Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix test for obsolete /m modifier
test died for the wrong reason, m:m is very much alive
(see S05-modifier/ignoremark.t)
  • Loading branch information
usev6 committed Sep 24, 2015
1 parent 8361bcd commit 8f437db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S05-metasyntax/changed.t
Expand Up @@ -18,7 +18,7 @@ plan 12;
ok(!($str ~~ /bc$/), '$ does not match \n');

# (The /m modifier is gone.)
eval-dies-ok('$str ~~ m:m/bc$/', '/m modifier (as :m) is gone');
throws-like '$str ~~ m/bc$/m', X::Obsolete, '/m modifier is gone';
}

# A $ no longer matches an optional preceding \n
Expand Down

0 comments on commit 8f437db

Please sign in to comment.