From: Vincent Pit Date: Fri, 6 Feb 2009 20:54:51 +0000 (+0100) Subject: Test description nit in t/28-uvar.t X-Git-Tag: v0.29~5 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=16e2df08bcfa1286759b63bb20dbd536acd1cb44;hp=fbbe2a83ed1d928afe5a634f01c1b653d7288d9c;p=perl%2Fmodules%2FVariable-Magic.git Test description nit in t/28-uvar.t --- diff --git a/t/28-uvar.t b/t/28-uvar.t index 8601a9c..c4551ed 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)"; }