Changeset 21979

Show
Ignore:
Timestamp:
08/21/08 09:26:41 (3 months ago)
Author:
moritz
Message:

[t/spec] a few disambiguating whitespaces

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-builtin_data_types/type.t

    r21960 r21979  
    1313 
    1414{ 
    15     ok(try{my Int $foo; 1}, 'compile my Int $foo'); 
    16     ok(try{my Str $bar; 1}, 'compile my Str $bar'); 
     15    ok(try {my Int $foo; 1}, 'compile my Int $foo'); 
     16    ok(try {my Str $bar; 1}, 'compile my Str $bar'); 
    1717} 
    1818 
    19 ok(do{my Int $foo; $foo ~~ Int}, 'Int $foo isa Int'); 
    20 ok(do{my Str $bar; $bar ~~ Str}, 'Str $bar isa Str'); 
     19ok(do {my Int $foo; $foo ~~ Int}, 'Int $foo isa Int'); 
     20ok(do {my Str $bar; $bar ~~ Str}, 'Str $bar isa Str'); 
    2121 
    2222my Int $foo;