projects
/
p5sagit/Config-Any.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
ae826e8
)
less strict error check
Graham Knop [Sun, 23 Apr 2017 20:48:46 +0000 (22:48 +0200)]
t/53-perl.t
patch
|
blob
|
blame
|
history
diff --git
a/t/53-perl.t
b/t/53-perl.t
index
6952948
..
4e59ae7
100644
(file)
--- 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';
}