Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[split.t] fix typo in test
  • Loading branch information
Fitz Elliott committed Jan 31, 2011
1 parent 2be4bce commit f45e8fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S32-str/split.t
Expand Up @@ -173,9 +173,9 @@ is "a.b".split(/\./).join(','), <a b>.join(','),
{
is 'hello-world'.split(/<.ws>/).join('|'), '|hello|-|world|',
'zero-width delimiter (<.ws>)';
is 'hello-world'.split(/<.ws>/).join('|'), '|hello|-|world|',
is 'hello-world'.split(/<.wb>/).join('|'), '|hello|-|world|',
'zero-width delimiter (<.wb>)';
is 'a-b-c'.split(/<.ws>/).join('|'), '|a|-|b|-|c|',
is 'a-b-c'.split(/<.wb>/).join('|'), '|a|-|b|-|c|',
'zero-width delimiter (<.wb>) (2)';
}

Expand Down

0 comments on commit f45e8fe

Please sign in to comment.