Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't assume ordering of suggestions [Coke]++
  • Loading branch information
dwarring committed Oct 22, 2014
1 parent 49ce219 commit 238cd55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S32-exceptions/misc.t
Expand Up @@ -416,7 +416,7 @@ if $emits_suggestions {
try EVAL('my cool $a');
ok $! ~~ X::Comp::Group, 'my cool $a throws an X::Comp::Group.';
ok $!.sorrows[0] ~~ X::Undeclared, "the first sorrow is X::Undeclared.";
is $!.sorrows[0].suggestions, <Cool Bool>, "the suggestions are Cool and Bool";
is $!.sorrows[0].suggestions.sort, <Bool Cool>, "the suggestions are Cool and Bool";
}

{
Expand Down

0 comments on commit 238cd55

Please sign in to comment.