Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix broken tests related to RT #63066
  • Loading branch information
lizmat committed Nov 7, 2013
1 parent 1727635 commit 2f98819
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions S32-str/split.t
Expand Up @@ -136,13 +136,12 @@ is "a.b".split(/\./).join(','), <a b>.join(','),
}

# RT #63066
#?rakudo todo 'still incorrect'
{
#?niecza todo 'has initial empty element'
is 'hello-world'.split(/<ws>/).join(','), <hello - world>.join(','),
is 'hello-world'.split(/<ws>/).join(','), ',hello,-,world,',
q{'hello-world'.split(/<ws>/)};
#?niecza skip 'Unable to resolve method wb in class Cursor'
is 'hello-world'.split(/<wb>/).join(','), <hello - world>.join(','),
is 'hello-world'.split(/<wb>/).join(','), ',hello,-,world,',
q{'hello-world'.split(/<wb>/)};
}

Expand Down

0 comments on commit 2f98819

Please sign in to comment.