summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php2
-rw-r--r--scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php2
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 );
}
}