[svn:parrot] r45321 - trunk/t/profiling

bubaflub at svn.parrot.org bubaflub at svn.parrot.org
Tue Mar 30 16:22:05 UTC 2010


Author: bubaflub
Date: Tue Mar 30 16:22:05 2010
New Revision: 45321
URL: https://trac.parrot.org/parrot/changeset/45321

Log:
[codingstd] remove trailing space

Modified:
   trunk/t/profiling/profiling.t

Modified: trunk/t/profiling/profiling.t
==============================================================================
--- trunk/t/profiling/profiling.t	Tue Mar 30 16:00:01 2010	(r45320)
+++ trunk/t/profiling/profiling.t	Tue Mar 30 16:22:05 2010	(r45321)
@@ -10,7 +10,7 @@
 
 plan(12);
 
-my $pir_code := 
+my $pir_code :=
 '.sub main
   say "what"
 .end';
@@ -30,7 +30,7 @@
 #Does the profile have a CLI invocation?
 $matcher := ProfTest::Matcher.new(
     cli()
-); 
+);
 
 ok( $matcher.matches($prof), "profile contains a CLI string");
 
@@ -61,7 +61,7 @@
     any(:except('cs')),
     op('say'),
 );
- 
+
 ok( $matcher.matches($prof), "profile shows 'say' inside main sub");
 
 
@@ -172,7 +172,7 @@
 
 $matcher := ProfTest::Matcher.new(
     cs(:ns('parrot;main') ),
-    any(:except('cs')), 
+    any(:except('cs')),
     op('say'),
 );
 


More information about the parrot-commits mailing list