]> granicus.if.org Git - php/commitdiff
fixing missing semi-colon
authorZoe Slattery <zoe@php.net>
Thu, 7 May 2009 13:26:00 +0000 (13:26 +0000)
committerZoe Slattery <zoe@php.net>
Thu, 7 May 2009 13:26:00 +0000 (13:26 +0000)
scripts/dev/generate-phpt/src/testcase/gtBasicTestCase.php
scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php

index ac7eb5cb36b902af9b11616d87d7ef513412ded9..684c24dd7eaf1184b27213247dae392b2478b260 100644 (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 );
   }
 }
index c2b388dd81aea11b0f61e007689b1275c0aa9296..214e3d28ba126f16d537285949a2bb3224a70cfe 100644 (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 );
   }
 }