summaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-05-20 18:35:54 +0000
committerNicholas Clark <nick@ccl4.org>2008-05-20 18:35:54 +0000
commit9453289ade80637b5f30952e561a6060b8ec854f (patch)
tree7dc7c9746eecdefcda223dad2bd403feddcb813a /t/lib
parentb2f871edc35e5f084fd4b5abd0a57506c09d66c8 (diff)
downloadperl-9453289ade80637b5f30952e561a6060b8ec854f.tar.gz
The TODO tests of change 33876 were actually fixed by change 33874.
p4raw-id: //depot/perl@33890
Diffstat (limited to 't/lib')
-rw-r--r--t/lib/strict/subs4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/strict/subs b/t/lib/strict/subs
index 2c9aa87372..c18af684f5 100644
--- a/t/lib/strict/subs
+++ b/t/lib/strict/subs
@@ -394,14 +394,14 @@ EXPECT
Bareword "FOO" not allowed while "strict subs" in use at - line 2.
Execution of - aborted due to compilation errors.
########
-# TODO: [perl #53806] No complain about bareword
+# [perl #53806] No complain about bareword
use strict 'subs';
print FOO . "\n";
EXPECT
Bareword "FOO" not allowed while "strict subs" in use at - line 3.
Execution of - aborted due to compilation errors.
########
-# TODO: [perl #53806] No complain about bareword
+# [perl #53806] No complain about bareword
use strict 'subs';
$ENV{PATH} = "";
system(FOO . "\n");