Skip to content

Commit

Permalink
[rakudo]: Fix some tests in 06-op-inplace.t .
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@32072 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
pmichaud committed Oct 21, 2008
1 parent b76575b commit 8c97945
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions languages/perl6/t/00-parrot/06-op-inplace.t
Expand Up @@ -57,17 +57,17 @@ $test_num = $test_num + 1;
$a +>= 1;
$a -= 1;
$a **= 2;
print 'not ' if $a != 3;
print 'not ' if $a != 9;
say "ok $test_num";
$test_num = $test_num + 1;

$a /= 3;
$a += 7;
print 'not ' if $a != 8;
print 'not ' if $a != 10;
say "ok $test_num";
$test_num = $test_num + 1;

$a %= 3;
print 'not ' if ( $a +10 ) != 12;
print 'not ' if ( $a +10 ) != 11;
say "ok $test_num";
$test_num = $test_num + 1;

0 comments on commit 8c97945

Please sign in to comment.