From a87717a51fa73900ac108f7953f52100089a4917 Mon Sep 17 00:00:00 2001 From: Ivan Lanin Date: Fri, 14 Mar 2014 04:39:41 +0700 Subject: [PATCH] Fix for footnotes test --- Tests/PHPWord/Writer/Word2007/FootnotesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/PHPWord/Writer/Word2007/FootnotesTest.php b/Tests/PHPWord/Writer/Word2007/FootnotesTest.php index bac2ed83..ea49bd67 100644 --- a/Tests/PHPWord/Writer/Word2007/FootnotesTest.php +++ b/Tests/PHPWord/Writer/Word2007/FootnotesTest.php @@ -29,6 +29,6 @@ class FootnotesTest extends \PHPUnit_Framework_TestCase $footnote->addLink('http://google.com'); $doc = TestHelperDOCX::getDocument($PHPWord); - $this->assertTrue($doc->elementExists("/w:document/w:body/w:p/w:r/w:footnoteReference']")); + $this->assertTrue($doc->elementExists("/w:document/w:body/w:p/w:r/w:footnoteReference")); } }