From 8592be20367790582c7235988ceafc5350a036b3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 22 Dec 2017 14:04:52 -0300 Subject: [PATCH] Bug 19760: Fix Config.t test Signed-off-by: Jonathan Druart --- t/Koha/Config.t | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/t/Koha/Config.t b/t/Koha/Config.t index 2ae3c25..b4168b9 100644 --- a/t/Koha/Config.t +++ b/t/Koha/Config.t @@ -52,10 +52,8 @@ subtest 'read_from_file() tests' => sub { $parsing_result = 'error'; - warning_is - {$result = Koha::Config->read_from_file("SomeFile.xml")} - 'Error reading file SomeFile.xml', - 'File failing to read raises warning'; + $result = eval {Koha::Config->read_from_file("SomeFile.xml")}; + like( $@, qr{.*Error reading file.*}, 'File failing to read raises warning'); is( $result, undef, 'Returns undef on error confition' ); }; -- 2.1.4