From b7c2f0da58ee276f16bfdd93059eeeca870de145 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 4 Feb 2021 10:56:15 -0300 Subject: [PATCH] Bug 26274: (QA follow-up) Minor fixes Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Koha/Cash/Register/Cashup.t | 8 ++++---- t/db_dependent/Koha/Cash/Register/Cashups.t | 0 t/db_dependent/api/v1/cashups.t | 0 3 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 t/db_dependent/Koha/Cash/Register/Cashup.t mode change 100644 => 100755 t/db_dependent/Koha/Cash/Register/Cashups.t mode change 100644 => 100755 t/db_dependent/api/v1/cashups.t diff --git a/t/db_dependent/Koha/Cash/Register/Cashup.t b/t/db_dependent/Koha/Cash/Register/Cashup.t old mode 100644 new mode 100755 index cc21a9ce05a..e49c8e5223f --- a/t/db_dependent/Koha/Cash/Register/Cashup.t +++ b/t/db_dependent/Koha/Cash/Register/Cashup.t @@ -208,7 +208,7 @@ subtest 'summary' => sub { $expected_total += $expected_income_total; $expected_total -= $expected_payout_total; - diag("Cashup 1"); + # Cashup 1 my $cashup1 = $register->add_cashup( { manager_id => $manager->id, amount => '2.00' } ); @@ -268,7 +268,7 @@ subtest 'summary' => sub { $expected_total += $expected_income_total; $expected_total -= $expected_payout_total; - diag("Cashup 2"); + # Cashup 2 my $cashup2 = $register->add_cashup( { manager_id => $manager->id, amount => '2.00' } ); @@ -317,7 +317,7 @@ subtest 'summary' => sub { $payout2->date( \'NOW() - INTERVAL 3 MINUTE' )->store; $expected_payout_total += '1.00'; - # Account fee of 1.00 fully refunded (Accross cashup boundary) + # Account fee of 1.00 fully refunded (Across cashup boundary) unshift @{$expected_payout_grouped}, { 'total' => '1', @@ -330,7 +330,7 @@ subtest 'summary' => sub { $expected_total += $expected_income_total; $expected_total -= $expected_payout_total; - diag("Cashup 3"); + # Cashup 3 my $cashup3 = $register->add_cashup( { manager_id => $manager->id, amount => '2.00' } ); diff --git a/t/db_dependent/Koha/Cash/Register/Cashups.t b/t/db_dependent/Koha/Cash/Register/Cashups.t old mode 100644 new mode 100755 diff --git a/t/db_dependent/api/v1/cashups.t b/t/db_dependent/api/v1/cashups.t old mode 100644 new mode 100755 -- 2.30.0