X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F28-uvar.t;h=fcb531b8d7d691fc24e71dd70cc7dd1a9f36e4e9;hb=fd2b4b28517f7f12044530f6c3ceca07181fba70;hp=8601a9c1daa8881e93acfa99aecea8440043972b;hpb=41055dbdc806bf27c190d809d3453f809de730fd;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/28-uvar.t b/t/28-uvar.t index 8601a9c..fcb531b 100644 --- a/t/28-uvar.t +++ b/t/28-uvar.t @@ -105,7 +105,7 @@ for my $i (1 .. 2) { for my $i (1 .. 2) { eval { $h3{b} = 5 + $i }; - is $@, '', "uvar: change readonly key in store croaks ($i)"; + is $@, '', "uvar: change readonly key in store doesn't croak ($i)"; is_deeply \%h3, { a => 3, b => 5, c => 5 + $i }, - "uvar: change readonly key in store correcty ($i)"; + "uvar: change readonly key in store correcty ($i)"; }