From b49dc8ca871a8618d997d3c1a8ecbb2c54a70ee7 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Thu, 7 Aug 2025 18:39:34 +0000 Subject: [PATCH] Bug 33758: (follow-up) Fix tests Signed-off-by: Roman Dolny Signed-off-by: Kyle M Hall --- t/db_dependent/Koha/Plugins/Plugins.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/db_dependent/Koha/Plugins/Plugins.t b/t/db_dependent/Koha/Plugins/Plugins.t index ef862ccc4eb..bc626f5830d 100755 --- a/t/db_dependent/Koha/Plugins/Plugins.t +++ b/t/db_dependent/Koha/Plugins/Plugins.t @@ -332,6 +332,7 @@ subtest 'Koha::Plugin::Test' => sub { ok( can_load( modules => { "Koha::Plugin::Test" => undef } ), 'Test can_load' ); my $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } ); + my $biblionumber = 1; isa_ok( $plugin, "Koha::Plugin::Test", 'Test plugin class' ); isa_ok( $plugin, "Koha::Plugins::Base", 'Test plugin parent class' ); -- 2.50.1 (Apple Git-155)