Bug 22521: (QA follow-up) Update 'Offsets' test
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 29 Mar 2019 10:04:46 +0000 (10:04 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 17 Apr 2019 16:49:36 +0000 (16:49 +0000)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

t/db_dependent/Koha/Account/Offsets.t

index 4ebdc5d..8befae5 100755 (executable)
@@ -44,17 +44,17 @@ subtest 'total_outstanding() tests' => sub {
     my $amount_5 = 500;
 
     my $offset_1 = Koha::Account::Offset->new(
-        { type => 'Fine', amount => $amount_1, credit_id => $line->id } )->store;
+        { type => 'OVERDUE', amount => $amount_1, credit_id => $line->id } )->store;
     my $offset_2 = Koha::Account::Offset->new(
-        { type => 'Fine', amount => $amount_2, credit_id => $line->id } )->store;
+        { type => 'OVERDUE', amount => $amount_2, credit_id => $line->id } )->store;
     my $offset_3 = Koha::Account::Offset->new(
         { type => 'Payment', amount => $amount_3, credit_id => $line->id } )->store;
     my $offset_4 = Koha::Account::Offset->new(
         { type => 'Payment', amount => $amount_4, credit_id => $line->id } )->store;
     my $offset_5 = Koha::Account::Offset->new(
-        { type => 'Fine', amount => $amount_5, credit_id => $line->id } )->store;
+        { type => 'OVERDUE', amount => $amount_5, credit_id => $line->id } )->store;
 
-    my $debits = Koha::Account::Offsets->search( { type => 'Fine', credit_id => $line->id } );
+    my $debits = Koha::Account::Offsets->search( { type => 'OVERDUE', credit_id => $line->id } );
     is( $debits->total, $amount_1 + $amount_2 + $amount_5 );
 
     my $credits = Koha::Account::Offsets->search( { type => 'Payment', credit_id => $line->id } );