From fbca7b82f13d0fb008b213d384329822558efc88 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 22 Apr 2024 06:56:23 +0000 Subject: [PATCH] Bug 35581: Fix failing t/db_dependent/Koha/ILL/Request.t Signed-off-by: Katrin Fischer --- t/db_dependent/Koha/ILL/Request.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/db_dependent/Koha/ILL/Request.t b/t/db_dependent/Koha/ILL/Request.t index b0a747c98d..5f4de8a993 100755 --- a/t/db_dependent/Koha/ILL/Request.t +++ b/t/db_dependent/Koha/ILL/Request.t @@ -55,7 +55,7 @@ subtest 'get_type_disclaimer_value() tests' => sub { $schema->storage->txn_begin; - my $request = $builder->build_object( { class => 'Koha::Illrequests' } ); + my $request = $builder->build_object( { class => 'Koha::ILL::Requests' } ); is( $request->get_type_disclaimer_value, undef, @@ -64,7 +64,7 @@ subtest 'get_type_disclaimer_value() tests' => sub { $builder->build_object( { - class => 'Koha::Illrequestattributes', + class => 'Koha::ILL::Request::Attributes', value => { illrequest_id => $request->illrequest_id, type => 'type_disclaimer_value', @@ -87,7 +87,7 @@ subtest 'get_type_disclaimer_date() tests' => sub { $schema->storage->txn_begin; - my $request = $builder->build_object( { class => 'Koha::Illrequests' } ); + my $request = $builder->build_object( { class => 'Koha::ILL::Requests' } ); is( $request->get_type_disclaimer_date, undef, @@ -96,7 +96,7 @@ subtest 'get_type_disclaimer_date() tests' => sub { $builder->build_object( { - class => 'Koha::Illrequestattributes', + class => 'Koha::ILL::Request::Attributes', value => { illrequest_id => $request->illrequest_id, type => 'type_disclaimer_date', -- 2.39.5