diff options
Diffstat (limited to 't/op/mkdir.t')
-rw-r--r-- | t/op/mkdir.t | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/t/op/mkdir.t b/t/op/mkdir.t index 35e477306c..d37acc62fa 100644 --- a/t/op/mkdir.t +++ b/t/op/mkdir.t @@ -6,7 +6,7 @@ BEGIN { require './test.pl'; } -plan tests => 22; +plan tests => 17; unless (eval { require File::Path; @@ -58,13 +58,3 @@ ok(-d); ok(rmdir); ok(!-d); $_ = 'lfrulb'; - -{ - no warnings 'experimental::lexical_topic'; - my $_ = 'blurfl'; - ok(mkdir); - ok(-d); - ok(-d 'blurfl'); - ok(!-d 'lfrulb'); - ok(rmdir); -} |