summaryrefslogtreecommitdiff
path: root/ext/Safe
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Safe')
-rw-r--r--ext/Safe/t/safeops.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Safe/t/safeops.t b/ext/Safe/t/safeops.t
index 525ee97f62..c990b6a43b 100644
--- a/ext/Safe/t/safeops.t
+++ b/ext/Safe/t/safeops.t
@@ -41,7 +41,7 @@ close $fh;
sub testop {
my ($op, $opname, $code) = @_;
pass("$op : skipped") and return if $code =~ /^SKIP/;
- pass("$op : skipped") if $code =~ m://: && $] < 5.009;
+ pass("$op : skipped") and return if $code =~ m://: && $] < 5.009; # no dor
my $c = new Safe;
$c->deny_only($op);
$c->reval($code);