]> git.vpit.fr Git - perl/modules/Lexical-Types.git/blobdiff - t/23-magic-uvar.t
Switch to qw<>
[perl/modules/Lexical-Types.git] / t / 23-magic-uvar.t
index 9d3013b59625bfb9a1d5f55737f73bc7298c0a7d..ce80f2ec95ccb0cf2e3ac8827079bb71a41dd05a 100644 (file)
@@ -13,7 +13,7 @@ BEGIN {
 {
  package Lexical::Types::Test::Ref;
 
- use Variable::Magic qw/wizard cast/;
+ use Variable::Magic qw<wizard cast>;
 
  our $wiz;
  BEGIN {
@@ -45,7 +45,8 @@ sub check (&$$;$) {
  my $want = wantarray;
  my @ret;
  {
-  local @{$got}{qw/fetch store/}; delete @{$got}{qw/fetch store/};
+  local @{$got}{qw<fetch store>};
+  delete @{$got}{qw<fetch store>};
   if ($want) {
    @ret = eval { $test->() };
   } elsif (defined $want) {