diff options
author | Zoe Slattery <zoe@php.net> | 2009-05-07 13:26:00 +0000 |
---|---|---|
committer | Zoe Slattery <zoe@php.net> | 2009-05-07 13:26:00 +0000 |
commit | f2cc5467da180489cc06bac617589e475016807c (patch) | |
tree | 60ef0ea5c26a525e91f74553c3e245e4a448bd29 /scripts | |
parent | 9861f86c9f83301d7b5acc92e42dbb158bb3f83a (diff) | |
download | php-git-f2cc5467da180489cc06bac617589e475016807c.tar.gz |
fixing missing semi-colon
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php | 2 | ||||
-rw-r--r-- | scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php | 2 |
2 files changed, 2 insertions, 2 deletions
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 ); } } |