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) <indradg@gmail.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
b59b991977
commit
8f12796633
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ $dbh->{RaiseError} = 1;
|
||||||
$dbh->do(q|DELETE FROM discharges|);
|
$dbh->do(q|DELETE FROM discharges|);
|
||||||
|
|
||||||
C4::Context->_new_userenv('xxx');
|
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(
|
my $borrowernumber = AddMember(
|
||||||
cardnumber => 'UTCARD1',
|
cardnumber => 'UTCARD1',
|
||||||
|
|
Loading…
Reference in a new issue