diff options
-rw-r--r-- | t/op/stash.t | 5 | ||||
-rw-r--r-- | t/uni/stash.t | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/t/op/stash.t b/t/op/stash.t index 99e44da030..616853b916 100644 --- a/t/op/stash.t +++ b/t/op/stash.t @@ -294,11 +294,8 @@ fresh_perl_is( 'ref() returns the same thing when an object’s stash is detached'; ::like "$obj", qr "^rile=ARRAY\(0x[\da-f]+\)\z", 'objects stringify the same way when their stashes are detached'; - { - local $::TODO = $Config{useithreads} ? "fails under threads" : undef; - ::is eval '__PACKAGE__', 'rile', + ::is eval '__PACKAGE__', 'rile', '__PACKAGE__ returns the same when the current stash is detached'; - } } # Setting the name during undef %stash:: should have no effect. diff --git a/t/uni/stash.t b/t/uni/stash.t index bacd69d1e2..7d24e5178a 100644 --- a/t/uni/stash.t +++ b/t/uni/stash.t @@ -280,11 +280,8 @@ plan( tests => 58 ); 'ref() returns the same thing when an object’s stash is detached'; ::like "$obj", qr "^rìle=ARRAY\(0x[\da-f]+\)\z", 'objects stringify the same way when their stashes are detached'; - { - 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 detached'; - } } # Setting the name during undef %stash:: should have no effect. |