drop the use of fatal warnings in tests
Karen Etheridge [Sun, 15 Mar 2015 00:25:01 +0000 (17:25 -0700)]
It can be a good idea to fatalize warnings for the author, but we do not want
to block end-user installs if some new perl adds a warning that we did not
predict.

t/safe_isa.t

index 837f3c4..77b5bc0 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings FATAL => 'all';
+use warnings;
 use Test::More tests => 20;
 
 { package Foo; sub new { bless({}, $_[0]) } }