From dadb86772ce839cec6907efabd2a73acddee7025 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Wed, 3 Jun 2015 15:25:47 -0400 Subject: [PATCH] Bug 14325: Test calls C4::Context::set_userenv This is a case of works by accident. This patch corrects the set_userenv call. TEST PLAN --------- 1) prove t/db_dependent/Borrower_Discharge.t -- works 2) git grep :set_userenv -- only this one file. 3) Confirm the the C4/Context.pm has a set_userenv which shifts the first parameter, as intended for a -> call and not a :: call. 4) apply patch 5) prove t/db_dependent/Borrower_Discharge.t -- still works 6) git grep :set_userenv -- nothing now. 7) run koha qa test tools Signed-off-by: Indranil Das Gupta (L2C2 Technologies) --- t/db_dependent/Borrower_Discharge.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Borrower_Discharge.t b/t/db_dependent/Borrower_Discharge.t index cb5179f..b585db2 100644 --- a/t/db_dependent/Borrower_Discharge.t +++ b/t/db_dependent/Borrower_Discharge.t @@ -20,7 +20,7 @@ $dbh->{RaiseError} = 1; $dbh->do(q|DELETE FROM discharges|); C4::Context->_new_userenv('xxx'); -C4::Context::set_userenv(0, 0, 0, 'firstname', 'surname', 'CPL', 'CPL', '', '', ''); +C4::Context->set_userenv(0, 0, 0, 'firstname', 'surname', 'CPL', 'CPL', '', '', '', '', ''); my $borrowernumber = AddMember( cardnumber => 'UTCARD1', -- 1.9.1