From: Father Chrysostomos Date: Sun, 6 Nov 2011 20:57:12 +0000 (-0800) Subject: Typos in gv.t X-Git-Tag: v5.15.5~148 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/dc115b7c990ed39ae756b1aeda859ef04e228a7d?hp=1fda587de9a7b85b90f9599b4b746d258afa2e6c Typos in gv.t --- diff --git a/t/op/gv.t b/t/op/gv.t index 81e7ba8..b681638 100644 --- a/t/op/gv.t +++ b/t/op/gv.t @@ -856,13 +856,13 @@ ok eval { my $glob = do { no warnings "once"; \*phing::foo}; delete $::{"phing::"}; *$glob = *greck; -}, "Assigning a glob-with-sub to a glob that has lost its stash warks"; +}, "Assigning a glob-with-sub to a glob that has lost its stash works"; ok eval { sub pon::foo; my $glob = \*pon::foo; delete $::{"pon::"}; *$glob = *foo; -}, "Assigning a glob to a glob-with-sub that has lost its stash warks"; +}, "Assigning a glob to a glob-with-sub that has lost its stash works"; { package Tie::Alias;