From 966d6f7a016ee406aa5cf9cc624181407145b9ce Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Mon, 28 Oct 2024 09:35:04 +0000 Subject: [PATCH] Bug 38271: (QA follow-up) Fix testcritic testcritic was failing due to a 'return undef' so this commit amends that Test plan: 1) prove t/00-testcritic.t --- t/db_dependent/Koha/EDI.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/EDI.t b/t/db_dependent/Koha/EDI.t index a82ad168b15..5a8b8b89ec9 100755 --- a/t/db_dependent/Koha/EDI.t +++ b/t/db_dependent/Koha/EDI.t @@ -260,7 +260,7 @@ subtest '_handle_008_field' => sub { '_check_for_existing_bib', sub { my $bib_record = shift; - return undef; + return 0; } ); $edi_module->mock( -- 2.39.3 (Apple Git-146)