summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2011-02-16 16:11:36 +0100
committerH.Merijn Brand <h.m.brand@xs4all.nl>2011-02-16 16:11:36 +0100
commit311619b844266b7962ef286cdc8a6a347b4ac7c0 (patch)
tree3fa8ea18a73a30ed676552401645927dfe06d618
parentaab929cd3bd960f008787987aa2cd7bc89a10658 (diff)
downloadperl-311619b844266b7962ef286cdc8a6a347b4ac7c0.tar.gz
Hard-wired line numbers are still bad, but now correct
-rw-r--r--t/lib/warnings/doio4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/warnings/doio b/t/lib/warnings/doio
index 1afd767f94..99a1a56b33 100644
--- a/t/lib/warnings/doio
+++ b/t/lib/warnings/doio
@@ -257,7 +257,7 @@ open FH1, "../harness"; close FH1;
no warnings 'io' ;
open FH2, "../harness"; close FH2;
EXPECT
-Filehandle STDOUT reopened as FH1 only for input at - line 14.
+Filehandle STDOUT reopened as FH1 only for input at - line 5.
########
# doio.c [Perl_do_openn]
use Config;
@@ -268,4 +268,4 @@ no warnings 'io' ;
open my $fh2, ">doiowarn.tmp"; close $fh2;
unlink "doiowarn.tmp";
EXPECT
-Filehandle STDIN reopened as $fh1 only for output at - line 14.
+Filehandle STDIN reopened as $fh1 only for output at - line 5.