From 4cb2076c6208dc181b2a69b6d3bd49a4926530ba Mon Sep 17 00:00:00 2001 From: Andreas Guldstrand Date: Mon, 29 Aug 2016 00:19:33 +0200 Subject: sbofind: let get_file_contents use slurp() as well --- t/27-race-sbofind.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 't') diff --git a/t/27-race-sbofind.t b/t/27-race-sbofind.t index 5d0d1e4..c4384e8 100755 --- a/t/27-race-sbofind.t +++ b/t/27-race-sbofind.t @@ -71,7 +71,7 @@ my $tags_file = '/usr/sbo/repo/TAGS.txt'; my $out = capture_merged { $exit = exit_code { $ret = get_file_contents($file); }; }; is ($out, '', 'get_file_contents gave no output'); - is ($ret, "$file doesn't exist.\n", 'get_file_contents returned correctly'); + is ($ret, "Unable to open $file.\n", 'get_file_contents returned correctly'); is ($exit, undef, 'get_file_contents didn\'t exit'); system 'touch', $file; @@ -87,7 +87,7 @@ my $tags_file = '/usr/sbo/repo/TAGS.txt'; undef $ret; $out = capture_merged { $exit = exit_code { $ret = get_file_contents($file); }; }; - is ($out, "Unable to open $file.\n", 'get_file_contents correct output'); - is ($ret, undef, 'get_file_contents returned undef'); + is ($out, '', 'get_file_contents gave no output'); + is ($ret, "Unable to open $file.\n", 'get_file_contents returned correctly'); is ($exit, undef, 'get_file_contents still didn\'t exit'); } -- cgit v1.2.3