]> git.koha-community.org Git - koha.git/commit
Bug 26043: Fix random failure from Holds.t
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 22 Jul 2020 12:11:03 +0000 (14:11 +0200)
committerLucas Gass <lucas@bywatersolutions.com>
Thu, 13 Aug 2020 17:58:18 +0000 (17:58 +0000)
commitc98a283d118bb936dc44db1b73cfeb8e45f89a22
tree2e5642e0a03d32cd9ab3103812110901abbc77da
parenta8a7d8667edbe6d8b9ab19c33a6cd4ce1a8ca4f6
Bug 26043: Fix random failure from Holds.t

 #   Failed test 'Test ModReserveMinusPriority()'
 #   at t/db_dependent/Holds.t line 202.
 #          got: undef
 #     expected: '1605'
 # Looks like you failed 1 test of 66.

It is coming from Koha::Patron->holds that is ordering by reservedate,
so "sometimes" they are ordered in reverse (at least it's my
understanding of the problem).

Test plan:
Run the test file several times (from 20 to 60x), it must never fail
with this patch

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(cherry picked from commit 80a611797bf67b263b6b84a6e931833ea336b6a5)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
t/db_dependent/Holds.t