diff options
author | David Golden <dagolden@cpan.org> | 2011-02-16 10:49:02 -0500 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2011-02-16 10:49:02 -0500 |
commit | c58550c3f20c9b51a01fa4c2effbe0b49755cac5 (patch) | |
tree | ba72f627346ad9edaee825ffa26e95809fd069ae /lib/diagnostics.t | |
parent | 32b40adf68a55d5c1a7e1f5077d5bfa798a41506 (diff) | |
download | perl-c58550c3f20c9b51a01fa4c2effbe0b49755cac5.tar.gz |
Fix broken lib/diagnostics.t
Commit 96090e4 changed a diagnostic message, but didn't update
lib/diagnostics.t
Diffstat (limited to 'lib/diagnostics.t')
-rw-r--r-- | lib/diagnostics.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diagnostics.t b/lib/diagnostics.t index 06ab5363d5..dae2754b0d 100644 --- a/lib/diagnostics.t +++ b/lib/diagnostics.t @@ -35,7 +35,7 @@ seek STDERR, 0,0; $warning = ''; warn 'Lexing code attempted to stuff non-Latin-1 character into Latin-1 input'; -like $warning, qr/using lex_stuff_pvn_flags or similar/, 'L<foo|bar/baz>'; +like $warning, qr/using lex_stuff_pvn or similar/, 'L<foo|bar/baz>'; # Multiple messages with the same description seek STDERR, 0,0; |