summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-05-13 08:31:16 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-06-11 11:16:45 -0700
commit0e6309a848b5521a7f632fa9e4e49ba8dc4ac705 (patch)
treec3814a5c929bab6ee6e2ad77f02951d3952f5331
parentca0d4ed9074a1f098ee5b72a8ddd05c500b180de (diff)
downloadperl-0e6309a848b5521a7f632fa9e4e49ba8dc4ac705.tar.gz
Remove workaround for fixed bug
-rw-r--r--t/op/gv.t1
1 files changed, 0 insertions, 1 deletions
diff --git a/t/op/gv.t b/t/op/gv.t
index f796232134..c4570e31bb 100644
--- 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",