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

(-)a/t/db_dependent/Koha/Account.t (-3 / +2 lines)
Lines 187-194 subtest 'add_credit() tests' => sub { Link Here
187
        }
187
        }
188
    );
188
    );
189
189
190
    is( $schema->resultset('ActionLog')->count(), 2, 'Log was added' );
190
    is( $schema->resultset('ActionLog')->count(), $action_logs + 2, 'Log was added' );
191
    is( $schema->resultset('Statistic')->count(), 2, 'No action added to statistics, because of credit type' );
191
    is( $schema->resultset('Statistic')->count(), $action_logs + 2, 'No action added to statistics, because of credit type' );
192
192
193
    $schema->storage->txn_rollback;
193
    $schema->storage->txn_rollback;
194
};
194
};
195
- 

Return to bug 20980