Fix test failure
authorFather Chrysostomos <sprout@cpan.org>
Tue, 8 May 2012 15:26:54 +0000 (08:26 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 8 May 2012 15:26:54 +0000 (08:26 -0700)
Lesson learnt: After switching from threaded to unthreaded and fixing
the test, switch back again and re-run the test. :-)

ext/PerlIO-scalar/t/scalar.t

index 18bbda9..403afa7 100644 (file)
@@ -371,6 +371,6 @@ SKIP: {
   is scalar threads::async(sub { my $foo = $str; $foo })->join, "a",
     'scalars behind in-memory handles are cloned properly';
   print $fh "a";
-  is scalar async { print $fh "b"; $str }->join, "ab",
+  is scalar threads::async(sub { print $fh "b"; $str })->join, "ab",
     'printing to a cloned in-memory handle works';
 }