diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-04 16:41:23 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-04 18:14:53 -0700 |
commit | 2b2e870525cc613cf38ea39455b32d4a7e39a430 (patch) | |
tree | 589f6aaad7a4a0e1fb565bc0305a51a2f61e4219 /t/uni | |
parent | d4d03940c58a0177edb93c8854929856e9975bf9 (diff) | |
download | perl-2b2e870525cc613cf38ea39455b32d4a7e39a430.tar.gz |
stash.t: Un-TODO passing tests
Diffstat (limited to 't/uni')
-rw-r--r-- | t/uni/stash.t | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/t/uni/stash.t b/t/uni/stash.t index 168b93c874..bacd69d1e2 100644 --- a/t/uni/stash.t +++ b/t/uni/stash.t @@ -266,11 +266,8 @@ plan( tests => 58 ); 'ref() returns the same thing when an object’s stash is moved'; ::like "$obj", qr "^rìle=ARRAY\(0x[\da-f]+\)\z", 'objects stringify the same way when their stashes are moved'; - { - local $::TODO = $Config{useithreads} ? "fails under threads" : undef; - ::is eval '__PACKAGE__', 'rìle', + ::is eval '__PACKAGE__', 'rìle', '__PACKAGE__ returns the same when the current stash is moved'; - } # Now detach it completely from the symtab, making it effect- # ively anonymous |