[svn:parrot] r47397 - trunk/t/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sat Jun 5 22:43:21 UTC 2010
Author: bacek
Date: Sat Jun 5 22:43:20 2010
New Revision: 47397
URL: https://trac.parrot.org/parrot/changeset/47397
Log:
Fix test - use exact comparition instead of regex based. PGE isn't available in corevm.
Modified:
trunk/t/pmc/fixedintegerarray.t
Modified: trunk/t/pmc/fixedintegerarray.t
==============================================================================
--- trunk/t/pmc/fixedintegerarray.t Sat Jun 5 22:31:52 2010 (r47396)
+++ trunk/t/pmc/fixedintegerarray.t Sat Jun 5 22:43:20 2010 (r47397)
@@ -261,7 +261,7 @@
a1[0] = 7
a1[1] = 1
r = get_repr a1
- like(r, '[\s*7\s*\,\s*1\s*]', 'get_repr')
+ is(r, '[ 7, 1 ]', 'get_repr')
.end
.sub 'test_new_style_init'
More information about the parrot-commits
mailing list