Show
Ignore:
Timestamp:
07/03/08 21:59:12 (5 months ago)
Author:
moritz
Message:

[spec] use is_approx() instead of tryeq_sloppy for two tests, and remove their
TODO marking

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-operators/arith.t

    r21191 r21192  
    321321is 2**2, 4; 
    322322is 2.2**2, 4.84; 
    323 tryeq_sloppy 2**2.2, 4.59479341998814; 
    324 tryeq_sloppy 2.2**2.2, 5.66669577875008; 
     323is_approx 2**2.2, 4.59479341998814; 
     324is_approx 2.2**2.2, 5.66669577875008; 
    325325is 1**0, 1; 
    326326is 1**1, 1;