Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
fix some test descriptions, as reported by lithos++
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Nov 23, 2009
1 parent 1ec10cc commit a89723d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/nqp/42-cond-loop.t
Expand Up @@ -33,8 +33,8 @@ ok( $s == 5 && $a == 10, 'false unless + while');

$a := 0; $s := 0;
$s := 5 if $a > 0 until $a++ > 9;
ok( $s == 5 && $a == 11, 'true unless + until');
ok( $s == 5 && $a == 11, 'true if + until');

$a := 0; $s := 0;
$s := 5 if $a < 0 until $a++ > 9;
ok( $s == 0 && $a == 11, 'false unless + until');
ok( $s == 0 && $a == 11, 'false if + until');

0 comments on commit a89723d

Please sign in to comment.