summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-11-20 11:58:07 +0000
committerNicholas Clark <nick@ccl4.org>2010-11-20 11:58:07 +0000
commit2528605288634d5ddf6636ed4d85fb289b622e4a (patch)
tree5b3df9d248acc5acfe0de82ce3ca2bf5f9fb4890
parent3cea328dca910314153e2363d0d2b6f6c979a0c4 (diff)
downloadperl-2528605288634d5ddf6636ed4d85fb289b622e4a.tar.gz
Fix the test fix for older perls (5499dc3d6e47ea78). We're still on 5.13.6
-rw-r--r--dist/Data-Dumper/t/bless.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Data-Dumper/t/bless.t b/dist/Data-Dumper/t/bless.t
index f3d886a31d..086332c9c4 100644
--- a/dist/Data-Dumper/t/bless.t
+++ b/dist/Data-Dumper/t/bless.t
@@ -43,7 +43,7 @@ SKIP: {
my $t = bless( qr//, 'foo');
my $dt = Dumper($t);
-my $o = ($] > 5.013006 ? <<'PERL' : <<'PERL_LEGACY');
+my $o = ($] >= 5.013006 ? <<'PERL' : <<'PERL_LEGACY');
$VAR1 = bless( qr/(?^:)/, 'foo' );
PERL
$VAR1 = bless( qr/(?-xism:)/, 'foo' );