From be7480af8c81302a5fe8ea1a555f3916d7256774 Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Thu, 12 May 2022 11:50:44 +0000 Subject: [PATCH] Added a missing semicolon to the added subtest and increased test count to 107 https://bugs.koha-community.org/show_bug.cgi?id=30195 --- t/db_dependent/Suggestions.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Suggestions.t b/t/db_dependent/Suggestions.t index b0e810804b..4df723a888 100755 --- a/t/db_dependent/Suggestions.t +++ b/t/db_dependent/Suggestions.t @@ -18,7 +18,7 @@ use Modern::Perl; use DateTime::Duration; -use Test::More tests => 106; +use Test::More tests => 107; use Test::Warn; use t::lib::Mocks; @@ -668,6 +668,6 @@ subtest 'Suggestion with ISBN' => sub { my ($author_tag, $author_subfield) = C4::Biblio::GetMarcFromKohaField('biblio.author', ''); is($record->field( $author_tag), undef, "Record from suggestion author should be emtpy"); -} +}; $schema->storage->txn_rollback; -- 2.20.1