From: Graham Knop Date: Sun, 23 Apr 2017 20:48:46 +0000 (+0200) Subject: less strict error check X-Git-Tag: v0.32~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=commitdiff_plain;h=3f84b216a3751c35b67258ec527fd88d30433202 less strict error check --- diff --git a/t/53-perl.t b/t/53-perl.t index 6952948..4e59ae7 100644 --- a/t/53-perl.t +++ b/t/53-perl.t @@ -56,5 +56,5 @@ use Config::Any::Perl; ok !$loaded, 'config load failed'; is $config, undef, 'config load failed'; - like $@, qr/No such file or directory/, 'error thrown'; + isnt $@, '', 'error thrown'; }