Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge now passing tests
  • Loading branch information
lizmat committed Nov 15, 2015
1 parent 49d4301 commit a1e5aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S02-types/array-shapes.t
Expand Up @@ -78,7 +78,7 @@ plan 25;
my int @arr = 1, 2, 3, 4, 5;
is(@arr, <1 2 3 4 5>, 'my type @arr works');
is push(@arr, 6), [1,2,3,4,5,6], 'push on native @arr works';
#?rakudo 2 todo 'X::AdHoc "This type cannot unbox to a native integer" RT #125123'
# RT #125123'
throws-like { EVAL 'push @arr, "s"' },
X::TypeCheck,
'type constraints on my type @arr works (1)';
Expand Down

0 comments on commit a1e5aff

Please sign in to comment.