X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Prototype-Util.git;a=blobdiff_plain;f=t%2F12-recall.t;h=bc3375d6f3753ae4d48fe475bdf4abfa6c3e8b06;hp=d86235fae3b056a5b673f3f10c9a2fe2d88f944d;hb=4a302d06092850955b3c6de15940b89b207f1c54;hpb=cb4330ca38fd217d3886ea0fb161e5cc3ccdfd2c diff --git a/t/12-recall.t b/t/12-recall.t index d86235f..bc3375d 100644 --- a/t/12-recall.t +++ b/t/12-recall.t @@ -5,7 +5,7 @@ use warnings; use Test::More tests => 8 + 20 + (("$]" >= 5.010) ? 4 : 0); -use Scalar::Util qw; +use Scalar::Util; use Sub::Prototype::Util qw; sub exception { @@ -57,7 +57,7 @@ my @tests = ( sub myit { push @{$_[0]->[2]}, 3; return 4 }; if ("$]" >= 5.010) { - set_prototype \&myit, '_'; + Scalar::Util::set_prototype(\&myit, '_'); push @tests, [ 'main::myit', '_ with argument', [ [ 1, 2, [ ] ], 5 ], [ [ 1, 2, [ 3 ] ], 5 ],