Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove bogus test
  • Loading branch information
lizmat committed May 31, 2014
1 parent 96ee96e commit ff94d8f
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions integration/real-strings.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 21;
plan 20;

# Rakudo had a regression that
# string returned from regexes were Parrot strings, not Perl 6 strings.
Expand Down Expand Up @@ -56,14 +56,6 @@ is "helo".substr(0,3).trans, 'hel', 'substr returns P6 strings (RT 76564, RT 710
is substtest("mop"), "map", '.subst works in a multi';
}

# not a "real string', but a "real hash" bug found in Rakudo:

{
my $x = 0;
for $*VM.kv -> $k, $v { $x++};
is $x, +$*VM.keys, '$*VM.kv is self-consistent';
}

# RT #67852
{
lives_ok { 'normal'.trans() }, 'can .trans() on normal string';
Expand Down

0 comments on commit ff94d8f

Please sign in to comment.