From 73b1adc356a976339c0ba366c0f39cf2f9105e7f Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 4 Aug 2023 16:06:40 +0000 Subject: [PATCH] Bug 34431: Update tests --- t/db_dependent/Koha/Illbackend.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/db_dependent/Koha/Illbackend.t b/t/db_dependent/Koha/Illbackend.t index 79d9477b3a..43b0bc5fe6 100644 --- a/t/db_dependent/Koha/Illbackend.t +++ b/t/db_dependent/Koha/Illbackend.t @@ -141,10 +141,10 @@ subtest 'existing_statuses() tests' => sub { # FIXME: Add tests to check content and order of return my $expected_statuses = [ - { code => 'CHK', str => 'Checked out' }, - { code => 'READY', str => 'Ready' }, - { code => 'REQ', str => 'Requested' }, - { code => 'BOB', str => 'Bob is the best status' } + { code => 'CHK', str => 'Checked out', type => 'ill_status' }, + { code => 'READY', str => 'Ready', type => 'ill_status' }, + { code => 'REQ', str => 'Requested', type => 'ill_status' }, + { code => 'BOB', str => 'Bob is the best status', type => 'av' } ]; is_deeply( $existing_statuses, $expected_statuses, 'Deep match on return' ); -- 2.30.2