From 2369043da25c3d1fffc1245d311910bbd8262a49 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Mon, 25 Jun 2018 18:57:20 +0000 Subject: [PATCH] Bug 20990: (follow-up) Fix test description Test plan: prove -v t/db_dependent/Koha/Account.t --> Test message of first test of subtest outtanding_credits correctly says "Outstanding credits total..." Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall --- t/db_dependent/Koha/Account.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/Account.t b/t/db_dependent/Koha/Account.t index 0ecab83f3b..6c8e8b5cba 100755 --- a/t/db_dependent/Koha/Account.t +++ b/t/db_dependent/Koha/Account.t @@ -82,7 +82,7 @@ subtest 'outstanding_credits() tests' => sub { my ( $total, $lines ) = $account->outstanding_credits(); - is( $total, -10, 'Outstandig debits total is correctly calculated' ); + is( $total, -10, 'Outstandig credits total is correctly calculated' ); my $i = 0; foreach my $line ( @{ $lines->as_list } ) { -- 2.15.2 (Apple Git-101.1)