[svn:parrot] r41802 - branches/pcc_reapply/t/op

tene at svn.parrot.org tene at svn.parrot.org
Sat Oct 10 19:56:26 UTC 2009


Author: tene
Date: Sat Oct 10 19:56:26 2009
New Revision: 41802
URL: https://trac.parrot.org/parrot/changeset/41802

Log:
[pcc] Another test regex fix

Modified:
   branches/pcc_reapply/t/op/cc_state.t

Modified: branches/pcc_reapply/t/op/cc_state.t
==============================================================================
--- branches/pcc_reapply/t/op/cc_state.t	Sat Oct 10 19:52:23 2009	(r41801)
+++ branches/pcc_reapply/t/op/cc_state.t	Sat Oct 10 19:56:26 2009	(r41802)
@@ -71,13 +71,13 @@
 
 pcc_error_like(
     { params => ".param pmc abc :named('x')" },
-    '/too few arguments passed - missing required named arg \'x\'/',
+    '/too few named arguments: no argument for required parameter \'x\'/',
     'G5: argument underflow: named required param',
 );
 
 pcc_error_like(
     { params => ".param pmc abc :named('x') :slurpy" },
-    '/too few arguments passed - missing required named arg \'x\'/',
+    '/too few named arguments: no argument for required parameter \'x\'/',
     'G6: argument underflow: named required slurpy param',
 );
 


More information about the parrot-commits mailing list