diff options
Diffstat (limited to 'ext/threads/t/end.t')
-rw-r--r-- | ext/threads/t/end.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/threads/t/end.t b/ext/threads/t/end.t index dd26042aed..19cd70433c 100644 --- a/ext/threads/t/end.t +++ b/ext/threads/t/end.t @@ -32,7 +32,7 @@ sub ok { $test_id++; return $ok; } -ok(1); +ok(1,''); END { ok(1,"End block run once") } threads->create(sub { eval "END { ok(1,'') }"})->join(); threads->create(sub { eval "END { ok(1,'') }"})->join(); |