Remove workaround for fixed bug
authorFather Chrysostomos <sprout@cpan.org>
Fri, 13 May 2011 15:31:16 +0000 (08:31 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Sat, 11 Jun 2011 18:16:45 +0000 (11:16 -0700)
t/op/gv.t

index f796232..c4570e3 100644 (file)
--- a/t/op/gv.t
+++ b/t/op/gv.t
@@ -830,7 +830,6 @@ pass('Can assign strings to typeglobs');
   tie my $a, "thrext";
   () = "$a"; # do a fetch; now $a holds a glob
   eval { *$a = sub{} };
-  eval { $a = undef }; # workaround for untie($handle) bug
   untie $a;
   eval { $a = "bar" };
   ::is $a, "bar",