diff options
Diffstat (limited to 't')
-rw-r--r-- | t/op/undef.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/op/undef.t b/t/op/undef.t index 8bfecab9e4..7afaf9cc93 100644 --- a/t/op/undef.t +++ b/t/op/undef.t @@ -72,6 +72,7 @@ like $@, qr/^Modification of a read/; { require Tie::Hash; tie my %foo, 'Tie::StdHash'; + no warnings 'deprecated'; ok defined %foo; %foo = ( a => 1 ); ok defined %foo; @@ -80,6 +81,7 @@ like $@, qr/^Modification of a read/; { require Tie::Array; tie my @foo, 'Tie::StdArray'; + no warnings 'deprecated'; ok defined @foo; @foo = ( a => 1 ); ok defined @foo; |