Author: fperrad
Date: Mon Apr 16 04:32:57 2007
New Revision: 18237

Modified:
   trunk/languages/lua/t/boolean.t
   trunk/languages/lua/t/number.t

Log:
[Lua]
- fix test suite against Lua 5.1.2

Modified: trunk/languages/lua/t/boolean.t
==============================================================================
--- trunk/languages/lua/t/boolean.t     (original)
+++ trunk/languages/lua/t/boolean.t     Mon Apr 16 04:32:57 2007
@@ -25,7 +25,7 @@
 language_output_like( 'lua', <<'CODE', <<'OUT', '-true' );
 print(-true)
 CODE
-/attempt to perform arithmetic on a boolean value/
+/attempt to perform arithmetic on a \w+ value/
 OUT
 
 language_output_like( 'lua', <<'CODE', <<'OUT', '# true' );

Modified: trunk/languages/lua/t/number.t
==============================================================================
--- trunk/languages/lua/t/number.t      (original)
+++ trunk/languages/lua/t/number.t      Mon Apr 16 04:32:57 2007
@@ -211,7 +211,7 @@
 language_output_like( 'lua', <<'CODE', <<'OUT', '1 .. true' );
 print(1 .. true)
 CODE
-/attempt to concatenate a boolean value/
+/attempt to concatenate a \w+ value/
 OUT
 
 language_output_is( 'lua', <<'CODE', <<'OUT', '1.0 == 1' );

Reply via email to