]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/blobdiff - t/02-pp.t
Restyle tests
[perl/modules/Scalar-Vec-Util.git] / t / 02-pp.t
index 0e418421e36833d95602c5c03e86c4605a45ad59..35e3d85c595bddfa2c84433c451edab46856ef6b 100644 (file)
--- a/t/02-pp.t
+++ b/t/02-pp.t
@@ -19,8 +19,8 @@ BEGIN {
 
 use Scalar::Vec::Util qw<vfill vcopy veq SVU_PP>;
 
-is(SVU_PP, 1, 'using pure perl subroutines');
+is SVU_PP, 1, 'using pure perl subroutines';
 for (qw<vfill vcopy veq>) {
  no strict 'refs';
- is(*{$_}{CODE}, *{'Scalar::Vec::Util::'.$_}{CODE}, $_ .' is ' . $_ . '_pp');
+ is *{$_}{CODE}, *{'Scalar::Vec::Util::'.$_}{CODE}, $_ .' is ' . $_ . '_pp';
 }