Author: bernhard
Date: Sat Dec 27 07:48:09 2008
New Revision: 34426

Modified:
   trunk/languages/pipp/t/php/functions.t

Log:
[Pipp] Saner function name in testcode.


Modified: trunk/languages/pipp/t/php/functions.t
==============================================================================
--- trunk/languages/pipp/t/php/functions.t      (original)
+++ trunk/languages/pipp/t/php/functions.t      Sat Dec 27 07:48:09 2008
@@ -158,11 +158,11 @@
 language_output_is( 'Pipp', <<'CODE', <<'OUT', 'function with three args' );
 <?php
 
-function echo_two_args( $arg_1, $arg_2, $arg_3 )  {
+function echo_three_args( $arg_1, $arg_2, $arg_3 )  {
   echo "$arg_1 $arg_2 $arg_3\n";
 }
 
-echo_two_args( 12, 'asdf', -1 );
+echo_three_args( 12, 'asdf', -1 );
 
 ?>
 CODE

Reply via email to