summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2022-02-07 17:26:13 +0000
committerPaul Evans <leonerd@leonerd.org.uk>2022-02-15 13:31:15 +0000
commit157bd0a33a7b8191e671b32554eb0018b57f314c (patch)
tree4c126d63d6f606189d1ea024fae3f027cb17be5d /t
parent6d7ebfa7d3430e86b053ac2852870f00c9f068d6 (diff)
downloadperl-157bd0a33a7b8191e671b32554eb0018b57f314c.tar.gz
No longer print experimental::isa warning (closes #18754)
Diffstat (limited to 't')
-rw-r--r--t/op/cmpchain.t2
-rw-r--r--t/op/isa.t1
2 files changed, 1 insertions, 2 deletions
diff --git a/t/op/cmpchain.t b/t/op/cmpchain.t
index 236d5f9a83..48aaabf1e5 100644
--- a/t/op/cmpchain.t
+++ b/t/op/cmpchain.t
@@ -7,7 +7,7 @@ BEGIN {
}
use feature "isa";
-no warnings qw(experimental::smartmatch experimental::isa);
+no warnings qw(experimental::smartmatch);
my @cheqop = qw(== != eq ne);
my @nceqop = qw(<=> cmp ~~);
diff --git a/t/op/isa.t b/t/op/isa.t
index 461b0c4850..42a993acaf 100644
--- a/t/op/isa.t
+++ b/t/op/isa.t
@@ -9,7 +9,6 @@ BEGIN {
use strict;
use feature 'isa';
-no warnings 'experimental::isa';
plan 14;