X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F40-scope.t;h=2e2afb8a1d6b357d59f62753b0fc22f24500ce64;hb=0b4ae66b743ee623cdfdb7cdbea5c84338f9e3d9;hp=0e3cdecfa5f88da56329f07d3088f4579fd193b1;hpb=d98155fce615007c0caae395a82ebd178d4b3877;p=perl%2Fmodules%2Fautovivification.git diff --git a/t/40-scope.t b/t/40-scope.t index 0e3cdec..2e2afb8 100644 --- a/t/40-scope.t +++ b/t/40-scope.t @@ -12,7 +12,7 @@ use lib 't/lib'; my $x; my $res = eval { local $SIG{__WARN__} = sub { push @w, join '', 'warn:', @_ }; - no autovivification qw/warn fetch/; + no autovivification qw; $x->{a}; }; is @w, 1, 'warned only once'; @@ -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.009005; is_deeply $blurp, $expect, 'second require test didn\'t vivify'; }