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

chromatic at svn.parrot.org chromatic at svn.parrot.org
Tue Dec 8 11:04:23 UTC 2009


Author: chromatic
Date: Tue Dec  8 11:04:21 2009
New Revision: 42944
URL: https://trac.parrot.org/parrot/changeset/42944

Log:
[t] Tidied one test in t/pmc/sub.t.

Modified:
   trunk/t/pmc/sub.t

Modified: trunk/t/pmc/sub.t
==============================================================================
--- trunk/t/pmc/sub.t	Tue Dec  8 10:53:14 2009	(r42943)
+++ trunk/t/pmc/sub.t	Tue Dec  8 11:04:21 2009	(r42944)
@@ -1,5 +1,5 @@
 #! perl
-# Copyright (C) 2001-2008, Parrot Foundation.
+# Copyright (C) 2001-2009, Parrot Foundation.
 # $Id$
 
 use strict;
@@ -1133,19 +1133,19 @@
 
 pir_output_is( <<'CODE', <<'OUTPUT', ':postcomp' );
 .sub main :main
-    say "main"
+    say 'main'
 .end
 .sub pc :postcomp
-    print "pc\n"
+    say 'pc'
 .end
 .sub im :immediate
-    print "im\n"
+    say 'im'
 .end
 .sub pc2 :postcomp
-    print "pc2\n"
+    say 'pc2'
 .end
 .sub im2 :immediate
-    print "im2\n"
+    say 'im2'
 .end
 CODE
 im


More information about the parrot-commits mailing list