Skip to content

Commit

Permalink
Fix typo in message
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed May 9, 2014
1 parent 2f79418 commit d07b16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S03-operators/div.t
Expand Up @@ -4,7 +4,7 @@ plan 6;

isa_ok 10 div 0 , Failure, "10 div 0 softfails";
isa_ok 10 / 0 , Rat, "10 / 0 is a Rat.";
isa_ok 10 / 0.0 , Rat, "10 / 0.0 is a rat";
isa_ok 10 / 0.0 , Rat, "10 / 0.0 is a Rat";
isa_ok 10 / 0e0 , Failure, "10 / 0e0 softfails";
isa_ok (1/1) / 0e0, Failure, "(1/1) / 0e0 softfails";
isa_ok 1e0 / (0/1), Failure, "1e0 / (0/1) softfails";

0 comments on commit d07b16d

Please sign in to comment.