diff options
Diffstat (limited to 't/io/tell.t')
-rwxr-xr-x | t/io/tell.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/io/tell.t b/t/io/tell.t index 9aa39e842f..deb49ce03d 100755 --- a/t/io/tell.t +++ b/t/io/tell.t @@ -103,7 +103,7 @@ END { unlink($written) } close($tst); open($tst,">$written") || die "Cannot open $written:$!"; -binmode $TST if $Is_Dosish; +binmode $tst if $Is_Dosish; if (tell($tst) == 0) { print "ok 24\n"; } else { print "not ok 24\n"; } @@ -118,7 +118,7 @@ if (tell($tst) == 10) { print "ok 26\n"; } else { print "not ok 26\n"; } close($tst); open($tst,"+>>$written") || die "Cannot open $written:$!"; -binmode $TST if $Is_Dosish; +binmode $tst if $Is_Dosish; if (0) { |