projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca0d4ed
)
Remove workaround for fixed bug
author
Father Chrysostomos
<sprout@cpan.org>
Fri, 13 May 2011 15:31:16 +0000
(08:31 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Sat, 11 Jun 2011 18:16:45 +0000
(11:16 -0700)
t/op/gv.t
patch
|
blob
|
history
diff --git
a/t/op/gv.t
b/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",