mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
fixing missing semi-colon
This commit is contained in:
parent
9861f86c9f
commit
f2cc5467da
2 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue