Changeset 22590 for t

Show
Ignore:
Timestamp:
10/12/08 19:24:09 (6 weeks ago)
Author:
moritz
Message:

[t/spec] remove double fudging

Files:
1 modified

Legend:

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

    r22402 r22590  
    117117#?rakudo skip "Method 'push' not found" 
    118118{     
    119     #?rakudo emit # 
    120119    %hash<key>.push(4); 
    121     #?rakudo 2 skip 'test dependency' 
    122120    is(+%hash<key>, 4, 'it should now have 4 values in it'); 
    123121    is(%hash<key>[3], 4, 'got the right value (which we just pushed onto the list)');     
     
    154152#?rakudo skip "Method 'push' not found" 
    155153{     
    156     #?rakudo emit # 
    157154    %hash<key>.push(4); 
    158155     
    159     #?rakudo 2 skip 'test dependency HoA' 
    160156    is(+%hash<key>, 4, 'it should now have 4 values in it'); 
    161157    is(%hash<key>[3], 4, 'got the right value (which we just pushed onto the array)');