Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed Setty.Str, so can unfudge these now
  • Loading branch information
lizmat committed Sep 8, 2013
1 parent 8164572 commit 3a7360b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion S02-types/keyset.t
Expand Up @@ -204,7 +204,6 @@ sub showset($s) { $s.keys.sort.join(' ') }
my $s = KeySet.new(<foo bar baz>);
lives_ok { $s = $s.Str }, ".Str lives";
isa_ok $s, Str, "... and produces a string";
#?rakudo todo 'huh?'
is $s.split(" ").sort.join(" "), "bar baz foo", "... which only contains bar baz and foo separated by spaces";
}

Expand Down
1 change: 0 additions & 1 deletion S02-types/set.t
Expand Up @@ -179,7 +179,6 @@ sub showset($s) { $s.keys.sort.join(' ') }
my $s = set <foo bar baz>;
lives_ok { $s = $s.Str }, ".Str lives";
isa_ok $s, Str, "... and produces a string";
#?rakudo todo "huh?"
is $s.split(" ").sort.join(" "), "bar baz foo", "... which only contains bar baz and foo separated by spaces";
}

Expand Down

0 comments on commit 3a7360b

Please sign in to comment.