Skip to content

Commit

Permalink
fix another enum test
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed May 13, 2012
1 parent 1a88785 commit 5c7bb81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S12-enums/pseudo-functional.t
Expand Up @@ -20,7 +20,7 @@ my $x = 'Today' but day(Tue);

ok $x.day ~~ day, 'day(Tue).day is a day';
ok $x.day == Tue, 'day(Tue) == Tue';
ok day($x) == Tue, 'day(day(Tue)) == Tue';
lives_ok { day($x) }, 'day($x) lives';
ok $x.Tue, 'day(Tue).Tue';

ok $x.day != Wed, 'day(Tue) != Wed';
Expand Down

0 comments on commit 5c7bb81

Please sign in to comment.