Skip to content

Commit

Permalink
fixing missing semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoe Slattery committed May 7, 2009
1 parent 9861f86 commit f2cc546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function constructSubjectCalls() {
}

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 );
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function constructSubjectCalls() {
}

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 );
}
}
Expand Down

0 comments on commit f2cc546

Please sign in to comment.