Browse Source

Bug 20906: Prevent test failures due to precision changes

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Martin Renvoize 6 years ago
committed by Nick Clemens
parent
commit
82be39a389
  1. 4
      t/db_dependent/Accounts.t

4
t/db_dependent/Accounts.t

@ -395,7 +395,7 @@ subtest "More Koha::Account::pay tests" => sub {
is( $stat->type, 'payment', "Correct statistic type" ); is( $stat->type, 'payment', "Correct statistic type" );
is( $stat->branch, $branch, "Correct branch logged to statistics" ); is( $stat->branch, $branch, "Correct branch logged to statistics" );
is( $stat->borrowernumber, $borrowernumber, "Correct borrowernumber logged to statistics" ); is( $stat->borrowernumber, $borrowernumber, "Correct borrowernumber logged to statistics" );
is( $stat->value, "$amount" . "\.0000", "Correct amount logged to statistics" ); is( $stat->value+0, $amount, "Correct amount logged to statistics" );
} }
}; };
@ -449,7 +449,7 @@ subtest "Even more Koha::Account::pay tests" => sub {
is( $stat->type, 'payment', "Correct statistic type" ); is( $stat->type, 'payment', "Correct statistic type" );
is( $stat->branch, $branch, "Correct branch logged to statistics" ); is( $stat->branch, $branch, "Correct branch logged to statistics" );
is( $stat->borrowernumber, $borrowernumber, "Correct borrowernumber logged to statistics" ); is( $stat->borrowernumber, $borrowernumber, "Correct borrowernumber logged to statistics" );
is( $stat->value, "$partialamount" . "\.0000", "Correct amount logged to statistics" ); is( $stat->value+0, $partialamount, "Correct amount logged to statistics" );
} }
}; };

Loading…
Cancel
Save