From: Vincent Pit Date: Sat, 7 Feb 2009 11:29:05 +0000 (+0100) Subject: Amend last change to make t/28-uvar.t pass again X-Git-Tag: v0.29~4 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=f1bba3296198360ce5a220711d7b4689551a1d96;p=perl%2Fmodules%2FVariable-Magic.git Amend last change to make t/28-uvar.t pass again --- diff --git a/t/28-uvar.t b/t/28-uvar.t index c4551ed..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 doesn't croak ($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)"; }