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

(-)a/t/db_dependent/Koha/Charges/Fees.t (-5 / +4 lines)
Lines 90-100 my $patron = $builder->build_object( Link Here
90
    }
90
    }
91
);
91
);
92
92
93
my $dt = dt_from_string();
93
my $now = dt_from_string()->set_time_zone('floating');
94
Time::Fake->offset( $dt->epoch );
94
Time::Fake->offset( $now->epoch );
95
95
96
my $dt_from = dt_from_string()->subtract( days => 2 );
96
my $dt_from = $now->clone->subtract( days => 2 );
97
my $dt_to = dt_from_string()->add( days => 4 );
97
my $dt_to = $now->clone->add( days => 4 );
98
98
99
subtest 'new' => sub {
99
subtest 'new' => sub {
100
    plan tests => 9;
100
    plan tests => 9;
101
- 

Return to bug 23382