]> git.vpit.fr Git - perl/modules/Sub-Nary.git/blobdiff - t/24-ops.t
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/Sub-Nary.git] / t / 24-ops.t
index f3f62f49337d65f48edab6aa609aab7a9993a0f7..f824d1c70ae8fee342b9af67cbc8c54263bcd54f 100644 (file)
@@ -13,7 +13,7 @@ my ($x, %h);
 
 my @tests = (
  [ sub { delete $h{foo} },             1 ],
- [ sub { delete @h{qw/foo bar baz/} }, 3 ],
+ [ sub { delete @h{qw<foo bar baz>} }, 3 ],
 
  [ sub { return <$x> }, 'list' ],
 
@@ -57,7 +57,7 @@ my @tests = (
  [ sub { endprotoent }, 1 ],
  [ sub { endservent },  1 ],
 
- [ sub { <*.*> }, { list => 1 / 3, 1 => 2 / 3 } ],
+ [ sub { <*.*> }, 1 ],
 );
 
 my $i = 1;