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

(-)a/t/db_dependent/Koha/Charges/Fees.t (-2 / +2 lines)
Lines 25-30 use Test::Warn; Link Here
25
25
26
use t::lib::Mocks;
26
use t::lib::Mocks;
27
use t::lib::TestBuilder;
27
use t::lib::TestBuilder;
28
use t::lib::Dates;
28
29
29
use Time::Fake;
30
use Time::Fake;
30
use C4::Calendar;
31
use C4::Calendar;
Lines 198-204 subtest 'new' => sub { Link Here
198
            to_date => $dt_to,
199
            to_date => $dt_to,
199
        }
200
        }
200
    );
201
    );
201
    is( $fees->from_date, dt_from_string(),
202
    is( t::lib::Dates::compare($fees->from_date, dt_from_string()), 0,
202
        'from_date default set correctly to today' );
203
        'from_date default set correctly to today' );
203
};
204
};
204
205
205
- 

Return to bug 25729