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

(-)a/t/db_dependent/Koha/Cash/Register.t (-3 / +2 lines)
Lines 206-218 subtest 'cashup' => sub { Link Here
206
        my $accountline1 = $builder->build_object(
206
        my $accountline1 = $builder->build_object(
207
            {
207
            {
208
                class => 'Koha::Account::Lines',
208
                class => 'Koha::Account::Lines',
209
                value => { register_id => $register->id, timestamp => \'NOW() - INTERVAL 5 MINUTE' },
209
                value => { register_id => $register->id, date => \'NOW() - INTERVAL 5 MINUTE' },
210
            }
210
            }
211
        );
211
        );
212
        my $accountline2 = $builder->build_object(
212
        my $accountline2 = $builder->build_object(
213
            {
213
            {
214
                class => 'Koha::Account::Lines',
214
                class => 'Koha::Account::Lines',
215
                value => { register_id => $register->id, timestamp => \'NOW() - INTERVAL 5 MINUTE'},
215
                value => { register_id => $register->id, date => \'NOW() - INTERVAL 5 MINUTE'},
216
            }
216
            }
217
        );
217
        );
218
218
219
- 

Return to bug 24820