]> git.vpit.fr Git - perl/modules/autovivification.git/blobdiff - t/40-scope.t
Make Perl version numbers more readable
[perl/modules/autovivification.git] / t / 40-scope.t
index 6b8361a33114e07d7f11717ef8efc6cd47981ab7..c3c57b5ff5ed62fa1b65494f42a0e54f96b9160c 100644 (file)
@@ -38,7 +38,7 @@ our $blurp;
  is        $@,     '',      'second require test doesn\'t croak prematurely';
  my $expect;
  $expect = { r1_main => { }, r1_eval => { } };
- $expect->{r2_eval} = { } if "$]" <  5.009005;
+ $expect->{r2_eval} = { } if "$]" <  5.009_005;
  is_deeply $blurp, $expect, 'second require test didn\'t vivify';
 }