Skip to content

Commit

Permalink
[t/spec] Fixes to RT 66304 test after conversation with moritz++
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@28987 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
kyle committed Nov 4, 2009
1 parent 9fbb95a commit 05fd86e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S02-builtin_data_types/lists.t
Expand Up @@ -156,9 +156,9 @@ plan *;

my $x = 44;
$rt66304 = ( 11, $x, 22 );
lives_ok { $rt66304[1] = 'rw' }, 'variable List element is mutable';
#?rakudo todo 'RT 66304'
is $x, 'rw', 'variable changed via assignment to list element';
dies_ok { $rt66304[1] = 'rw' }, 'variable List element is immutable';
is $x, 44, 'variable not changed via assignment to list element';
}

done_testing;
Expand Down

0 comments on commit 05fd86e

Please sign in to comment.