From 69be53a91b9a1d22d681a9051981eda9de66ba23 Mon Sep 17 00:00:00 2001 From: lwall Date: Thu, 6 May 2010 19:23:15 +0000 Subject: [PATCH] [sigspace.t] don't use [abc] to mean 'abc' since it looks like old-school character class git-svn-id: http://svn.pugscode.org/pugs@30569 c213334d-75ef-0310-aa23-eaa082d1ae64 --- S05-modifier/sigspace.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S05-modifier/sigspace.t b/S05-modifier/sigspace.t index 5b906e5bf3..8fe489e158 100644 --- a/S05-modifier/sigspace.t +++ b/S05-modifier/sigspace.t @@ -22,7 +22,7 @@ ok( "abc def" ~~ m:sigspace/abc <.ws> def/, 'Word explicit space match'); ok 'abc def' ~~ m/:s abc def/, 'inline :s (+)'; ok 'zabc def' !~~ m/:s abc def/, 'inline :s implies <.ws> immediately (-)'; -ok 'zabc def' ~~ m/:s[abc] def/, 'inline :s implies <.ws> immediately (+)'; +ok 'zabc def' ~~ m/:s'abc' def/, 'inline :s implies <.ws> immediately (+)'; # L