View | Details | Raw Unified | Return to bug 23012
Collapse All | Expand All

(-)a/t/db_dependent/Koha/Item.t (-3 / +2 lines)
Lines 1432-1439 subtest 'store() tests' => sub { Link Here
1432
            }
1432
            }
1433
        );
1433
        );
1434
1434
1435
        my $lostreturn_policy = 'charge';
1435
        my $lostreturn_policy       = { lostreturn       => 'charge' };
1436
        my $processingreturn_policy = 'refund';
1436
        my $processingreturn_policy = { processingreturn => 'refund' };
1437
1437
1438
        my $mocked_circ_rules = Test::MockModule->new('Koha::CirculationRules');
1438
        my $mocked_circ_rules = Test::MockModule->new('Koha::CirculationRules');
1439
        $mocked_circ_rules->mock( 'get_lostreturn_policy', sub { return $lostreturn_policy; } );
1439
        $mocked_circ_rules->mock( 'get_lostreturn_policy', sub { return $lostreturn_policy; } );
1440
- 

Return to bug 23012