diff options
author | Artur Bergman <sky@nanisky.com> | 2001-09-18 18:49:03 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-09-18 18:49:03 +0000 |
commit | 87e7c081d2a6d855cf78d04628acebc398a72b7e (patch) | |
tree | a57f5f43cad6e9fac73964ade30634fb0f097074 /ext | |
parent | a54396a03c51089dce3d7bc2dee3f48f90443e38 (diff) | |
download | perl-87e7c081d2a6d855cf78d04628acebc398a72b7e.tar.gz |
Fixes test case failure introduced by #12071, the warning is
now correctly spelled :-)
p4raw-id: //depot/perl@12074
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/IO/lib/IO/t/io_sel.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/lib/IO/t/io_sel.t b/ext/IO/lib/IO/t/io_sel.t index 84660db183..1426b76dfb 100755 --- a/ext/IO/lib/IO/t/io_sel.t +++ b/ext/IO/lib/IO/t/io_sel.t @@ -118,7 +118,7 @@ print "ok 21\n"; # check warnings $SIG{__WARN__} = sub { ++ $w - if $_[0] =~ /^Call to depreciated method 'has_error', use 'has_exception'/ + if $_[0] =~ /^Call to deprecated method 'has_error', use 'has_exception'/ } ; $w = 0 ; IO::Select::has_error(); |