This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Data::Dumper: Option to avoid building much of the seen hash
[perl5.git] / dist / Data-Dumper / t / bless.t
index f3d886a..086332c 100644 (file)
@@ -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' );