diff options
Diffstat (limited to 'ext/XS-APItest/t/hash.t')
-rw-r--r-- | ext/XS-APItest/t/hash.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/XS-APItest/t/hash.t b/ext/XS-APItest/t/hash.t index 06983c570d..1d01744151 100644 --- a/ext/XS-APItest/t/hash.t +++ b/ext/XS-APItest/t/hash.t @@ -254,7 +254,9 @@ sub test_precomputed_hashes { fill_hash_with_nulls(\%h); eval{ $h{84} = 1 }; pass 'no crash when writing to hash elem with null value'; - eval{ @h{85} = 1 }; + eval{ no # silly + warnings; # thank you! + @h{85} = 1 }; pass 'no crash when writing to hash elem with null value via slice'; } |