From f2cc5467da180489cc06bac617589e475016807c Mon Sep 17 00:00:00 2001 From: Zoe Slattery Date: Thu, 7 May 2009 13:26:00 +0000 Subject: fixing missing semi-colon --- scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php | 2 +- scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/dev/generate-phpt/src') 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 ); } } -- cgit v1.2.1