Bug 17599: (QA followup) Remove userenv warning

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Tomás Cohen Arazi 2016-11-15 12:27:33 -03:00 committed by Kyle M Hall
parent 6edbd47a44
commit 7953beeffd

View file

@ -41,12 +41,6 @@ BEGIN {
require_ok('C4::Reserves');
}
# a very minimal mack of userenv for use by the test of DelItemCheck
my $module = new Test::MockModule('C4::Context');
$module->mock('userenv', sub {
{ }
});
# Start transaction
my $database = Koha::Database->new();
my $schema = $database->schema();
@ -70,6 +64,9 @@ my $category_2 = $builder->build({ source => 'Category' })->{ categorycode };
my $itemtype = $builder->build(
{ source => 'Itemtype', value => { notforloan => undef } } )->{itemtype};
C4::Context->set_userenv(
undef, undef, undef, undef, undef, undef, $branch_1
);
# Create a helper biblio
my $bib = MARC::Record->new();