From: Zoe Slattery Date: Thu, 7 May 2009 13:26:00 +0000 (+0000) Subject: fixing missing semi-colon X-Git-Tag: php-5.3.0RC3~328 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2cc5467da180489cc06bac617589e475016807c;p=php fixing missing semi-colon --- diff --git a/scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php b/scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php index ac7eb5cb36..684c24dd7e 100644 --- a/scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php +++ b/scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php @@ -30,7 +30,7 @@ abstract class gtBasicTestCase extends gtTestCase { } public function addBasicEcho() { - $this->testCase[] = "echo \"*** Test by calling method or function with its expected arguments ***\\n\""; + $this->testCase[] = "echo \"*** Test by calling method or function with its expected arguments ***\\n\";"; $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); } } diff --git a/scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php b/scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php index c2b388dd81..214e3d28ba 100644 --- a/scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php +++ b/scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php @@ -45,7 +45,7 @@ abstract class gtErrorTestCase extends gtTestCase { } public function addErrorEcho() { - $this->testCase[] = "echo \"*** Test by calling method or function with incorrect numbers of arguments ***\\n\""; + $this->testCase[] = "echo \"*** Test by calling method or function with incorrect numbers of arguments ***\\n\";"; $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); } }