Changeset 21159

Show
Ignore:
Timestamp:
07/02/08 04:04:13 (5 months ago)
Author:
Auzon
Message:

[gsoc_spectest] unfudging two tests

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S29-list/reverse.t

    r21158 r21159  
    133133    my $a = "foo"; 
    134134    my @b = $a.reverse; 
    135     #?rakudo skip '.isa does not work correctly' 
    136     isa_ok(@b, 'Array');     
     135    isa_ok(@b, Array);     
    137136    my $b = $a.reverse; 
    138     isa_ok($b, 'Str');     
     137    isa_ok($b, Str);     
    139138     
    140139    is(@b[0], "oof", 'string in the array has been reversed'); 
     
    148147    my $a = "foo".reverse; 
    149148    my @b = "foo".reverse; 
    150     isa_ok($a, 'Str'); 
    151     #?rakudo skip '.isa does not work correctly' 
    152     isa_ok(@b, 'Array'); 
     149    isa_ok($a, Str); 
     150    isa_ok(@b, Array); 
    153151    is($a, "oof", 'string literal reversal works in scalar context'); 
    154152    is(@b[0], "oof", 'string literal reversal works in list context');