summaryrefslogtreecommitdiff
path: root/t/op/mkdir.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/mkdir.t')
-rw-r--r--t/op/mkdir.t12
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);
-}