From 8258719730b59de406fa34e6a4bbcc71771803be Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Fri, 26 Aug 2011 14:52:06 -0700 Subject: [PATCH] Reverse the order of two tests in gv.t so that the first does not make the second always pass. The bug that 99fc7eca4 fixed would never had occurred if they had been that way to begin with. --- t/op/gv.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/op/gv.t b/t/op/gv.t index 2930e12..0b3a543 100644 --- a/t/op/gv.t +++ b/t/op/gv.t @@ -219,8 +219,8 @@ is (*{*x{GLOB}}, "*main::STDOUT"); # although it *should* if you're talking about magicals my $a = "]"; - ok(defined ${$a}); ok(defined *{$a}); + ok(defined ${$a}); $a = "1"; "o" =~ /(o)/; -- 2.7.4