diff options
Diffstat (limited to 't/op/taint.t')
-rw-r--r-- | t/op/taint.t | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/t/op/taint.t b/t/op/taint.t index c8537fce40..0e89c1f87a 100644 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -2050,10 +2050,7 @@ end formline('@' .('<'*5) . ' | @*', 'hallo', 'welt'); isnt_tainted($^A, "accumulator still untainted"); formline('@' .('<'*(5+$TAINT0)) . ' | @*', 'hallo', 'welt'); - TODO: { - local $::TODO = "get magic handled too late?"; - is_tainted($^A, "the accumulator should be tainted already"); - } + is_tainted($^A, "the accumulator should be tainted already"); is_tainted($^A, "tainted formline picture makes a tainted accumulator"); } |