Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct test in short-circuit.t (RT #77864).
  • Loading branch information
pmichaud committed Sep 19, 2010
1 parent 895d239 commit bc0487b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions S03-operators/short-circuit.t
Expand Up @@ -178,8 +178,7 @@ ok (0 || 0 || 1), '0 || 0 || 1 is true';
{
my $x;
$x &&= 5;
#?rakudo todo '77864'
nok $x.defined, '&&= leaves var on the right undefined';
is $x, 5, '&&= on a fresh variable works';
my $y ||= 'moin';
is $y, 'moin', '||= on a fresh variable works';

Expand Down

0 comments on commit bc0487b

Please sign in to comment.