From 0db50ba8c07525b2c0a80b6e95dd5fa95b28b4f9 Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Thu, 12 May 2022 11:50:44 +0000 Subject: [PATCH] Bug 30195: Added a missing semicolon to the added subtest and increased test count to 107 https://bugs.koha-community.org/show_bug.cgi?id=30195 Signed-off-by: Paul Derscheid Signed-off-by: Jonathan Druart --- 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 b0e810804bc..4df723a8886 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.25.1