diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2010-05-05 14:35:25 -0400 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-05-05 14:35:25 -0400 |
commit | 7186b0badf2e072222edb463867230cf8820e369 (patch) | |
tree | 0f942171c7904dba04f0ae30e9a40b79af426195 /t/op/taint.t | |
parent | 994d373a075399b04d509cb2732e0a956c88e014 (diff) | |
download | perl-7186b0badf2e072222edb463867230cf8820e369.tar.gz |
Revert "tweak "0x123.456" deprecation"
This reverts commit 1183a10042af0734ee65e252f15bd820b7bbe686.
Zefram asked me to revert this as he's going to be doing something more
pluggable
Diffstat (limited to 't/op/taint.t')
-rw-r--r-- | t/op/taint.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/taint.t b/t/op/taint.t index 8aeaea1756..e3a5712913 100644 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -393,7 +393,7 @@ SKIP: { # Operations which affect directories can't use tainted data. { - test !eval { mkdir "foo".$TAINT, (0755).$TAINT0 }, 'mkdir'; + test !eval { mkdir "foo".$TAINT, 0755.$TAINT0 }, 'mkdir'; test $@ =~ /^Insecure dependency/, $@; test !eval { rmdir $TAINT }, 'rmdir'; |