[svn:parrot] r47398 - trunk/t/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Sat Jun 5 22:43:45 UTC 2010


Author: bacek
Date: Sat Jun  5 22:43:45 2010
New Revision: 47398
URL: https://trac.parrot.org/parrot/changeset/47398

Log:
Fix test - use exact comparition instead of regex based. PGE isn't available

Modified:
   trunk/t/pmc/resizablepmcarray.t

Modified: trunk/t/pmc/resizablepmcarray.t
==============================================================================
--- trunk/t/pmc/resizablepmcarray.t	Sat Jun  5 22:43:20 2010	(r47397)
+++ trunk/t/pmc/resizablepmcarray.t	Sat Jun  5 22:43:45 2010	(r47398)
@@ -755,7 +755,7 @@
     push array, 'a'
     push array, 'b'
     $S0 = get_repr array
-    like($S0, '[.*a.*\,.*b.*]', 'get_repr')
+    is($S0, '[ a, b ]', 'get_repr')
 .end
 
 .sub append_tests


More information about the parrot-commits mailing list