From 89a9b7a3a20a2695b283691c2d7867c74bb67d4a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 5 Apr 2024 16:34:02 +0200 Subject: [PATCH] Bug 33568: Prevent api/v1/biblios.t to fail randomly koha_1 | # Failed test 'The items are returned' koha_1 | # at t/db_dependent/api/v1/biblios.t line 196. koha_1 | # Structures begin differing at: koha_1 | # $got->[0]{external_id} = 'th151O2JtgfGdVW6aiF' koha_1 | # $expected->[0]{external_id} = 'uxrMzUXrkHQy7MHOSfjK' koha_1 | # Looks like you failed 1 test of 11. koha_1 | koha_1 | # Failed test 'get_items() tests' koha_1 | # at t/db_dependent/api/v1/biblios.t line 206. --- t/db_dependent/api/v1/biblios.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/api/v1/biblios.t b/t/db_dependent/api/v1/biblios.t index fdb148a8807..cb60e8e50fe 100755 --- a/t/db_dependent/api/v1/biblios.t +++ b/t/db_dependent/api/v1/biblios.t @@ -198,7 +198,7 @@ subtest 'get_items() tests' => sub { ->json_is( '' => [ $item_1->to_api, $item_2->to_api ], 'The items are returned' ); $t->get_ok( - "//$userid:$password@/api/v1/biblios/" . $biblio->biblionumber . "/items" => { "x-koha-embed" => "+strings" } ) + "//$userid:$password@/api/v1/biblios/" . $biblio->biblionumber . "/items?_order_by=item_id" => { "x-koha-embed" => "+strings" } ) ->status_is(200) ->json_has( '/0/_strings/home_library_id/str' => $item_1->holding_branch->branchname, '_strings are embedded' ); -- 2.34.1