X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcurry.t;fp=t%2Fcurry.t;h=5217f7e1da09d056a41b18bf59cc8efed6d52695;hb=bedcecab5b4c1f49e7e9b939668f87ae6e964102;hp=88e093e103aa24b4ecbad3f405626d6e8dd8bc53;hpb=640e95b3875914243b9c76bfeb370cd3a6951c6c;p=p5sagit%2Fcurry.git diff --git a/t/curry.t b/t/curry.t index 88e093e..5217f7e 100644 --- a/t/curry.t +++ b/t/curry.t @@ -41,7 +41,7 @@ is_deeply($curry->(1), [ $foo, 1 ], 'Curried weak object call'); my $curry2 = $foo->curry::weak::_('foo'); -is_deeply($curry->(1), [ $foo, 1 ], 'Curried weak string method call'); +is_deeply($curry2->(1), [ $foo, 1 ], 'Curried weak string method call'); weaken($weak_foo = $foo);