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

(-)a/t/db_dependent/Koha/Account.t (+3 lines)
Lines 856-861 subtest 'pay() handles lost items when paying by amount ( not specifying the los Link Here
856
    plan tests => 4;
856
    plan tests => 4;
857
857
858
    $schema->storage->txn_begin;
858
    $schema->storage->txn_begin;
859
    
860
    # Enable AccountAutoReconcile
861
    t::lib::Mocks::mock_preference( 'AccountAutoReconcile', 1 );
859
862
860
    my $patron  = $builder->build_object( { class => 'Koha::Patrons' } );
863
    my $patron  = $builder->build_object( { class => 'Koha::Patrons' } );
861
    my $library = $builder->build_object( { class => 'Koha::Libraries' } );
864
    my $library = $builder->build_object( { class => 'Koha::Libraries' } );
(-)a/t/db_dependent/api/v1/patrons_accounts.t (-1 / +3 lines)
Lines 39-44 subtest 'get_balance() tests' => sub { Link Here
39
39
40
    $schema->storage->txn_begin;
40
    $schema->storage->txn_begin;
41
41
42
    # Enable AccountAutoReconcile
43
    t::lib::Mocks::mock_preference( 'AccountAutoReconcile', 1 );
44
42
    my $patron = $builder->build_object({
45
    my $patron = $builder->build_object({
43
        class => 'Koha::Patrons',
46
        class => 'Koha::Patrons',
44
        value => { flags => 1 }
47
        value => { flags => 1 }
45
- 

Return to bug 27636