From: Kathy Lussier Date: Sun, 26 Jul 2015 03:42:32 +0000 (-0400) Subject: lp1478299 Fix hold permit test X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c4790a6c6ed0bcfd7196ac715854db2b32ea9396;p=working%2FEvergreen.git lp1478299 Fix hold permit test When we added copy locations to the sample data in bug 1155771, we accidentally applied a non-holdable copy location to the copy used in the hold permit pgTAP test, causing the test to fail. This branch changes the copy used in the test to one that is holdable. Signed-off-by: Kathy Lussier --- diff --git a/Open-ILS/src/sql/Pg/live_t/lp1277731_hold_permit_test.pg b/Open-ILS/src/sql/Pg/live_t/lp1277731_hold_permit_test.pg index 57090aa6c1..fe534ba877 100644 --- a/Open-ILS/src/sql/Pg/live_t/lp1277731_hold_permit_test.pg +++ b/Open-ILS/src/sql/Pg/live_t/lp1277731_hold_permit_test.pg @@ -7,7 +7,7 @@ SELECT is( ROW(true, 1, null)::action.matrix_test_result, 'verify action.hold_request_permit_test()' ) -FROM action.hold_request_permit_test( '8', '1', '2905', '1', '1' ) +FROM action.hold_request_permit_test( '8', '1', '2607', '1', '1' ) AS permit_test; SELECT * FROM finish();