Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix tests for new Baggy.gist format
  • Loading branch information
lizmat committed Oct 3, 2013
1 parent 3ee1ee0 commit cf33793
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion S02-types/bag.t
Expand Up @@ -215,7 +215,7 @@ sub showkv($x) {
my $s;
lives_ok { $s = $b.Str }, ".Str lives";
isa_ok $s, Str, "... and produces a string";
is $s.split(" ").sort.join(" "), "bar bar bar baz foo foo", "... which only contains bar baz and foo with the proper counts and separated by spaces";
is $s.split(" ").sort.join(" "), "bar(3) baz foo(2)", "... which only contains bar baz and foo with the proper counts and separated by spaces";
}

{
Expand Down
2 changes: 1 addition & 1 deletion S02-types/baghash.t
Expand Up @@ -220,7 +220,7 @@ sub showkv($x) {
my $s;
lives_ok { $s = $b.Str }, ".Str lives";
isa_ok $s, Str, "... and produces a string";
is $s.split(" ").sort.join(" "), "bar bar bar baz foo foo", "... which only contains bar baz and foo with the proper counts and separated by spaces";
is $s.split(" ").sort.join(" "), "bar(3) baz foo(2)", "... which only contains bar baz and foo with the proper counts and separated by spaces";
}

{
Expand Down

0 comments on commit cf33793

Please sign in to comment.