fixing missing semi-colon

This commit is contained in:
Zoe Slattery 2009-05-07 13:26:00 +00:00
parent 9861f86c9f
commit f2cc5467da
2 changed files with 2 additions and 2 deletions

View file

@ -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 );
}
}

View file

@ -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 );
}
}