Browse Source

Bug 19867: Prevent HouseboundRoles.t to fail randomly

Here is just a guess but we need to tell TestBuilder the values of
housebound_deliverer and housebound_chooser to make sure it will not be
1

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
I manually tested setting to the opposite values in the tests, and
verified those values made the tests fail due to count problems.
The fix is valid.
18.05.x
Jonathan Druart 6 years ago
parent
commit
9e465e3608
  1. 4
      t/db_dependent/Patron/HouseboundRoles.t

4
t/db_dependent/Patron/HouseboundRoles.t

@ -62,7 +62,8 @@ $builder->build({
source => 'HouseboundRole',
value => {
borrowernumber_id => $patron_chooser->{borrowernumber},
housebound_chooser => 1,
housebound_chooser => 1,
housebound_deliverer => 0,
},
});
@ -72,6 +73,7 @@ $builder->build({
value => {
borrowernumber_id => $patron_deliverer->{borrowernumber},
housebound_deliverer => 1,
housebound_chooser => 0,
},
});

Loading…
Cancel
Save