From b3ff402747f71979b516d21bd212438fc124b416 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 Signed-off-by: Stephen Graham Signed-off-by: Tomas Cohen Arazi --- 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 79d9477b3a3..43b0bc5fe68 100755 --- 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.43.0