From 2d1332938c2bfc0df44afbc332dcfa2657ffad75 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 16 Nov 2018 10:04:55 +0100 Subject: [PATCH] Bug 18677: (QA follow-up) Trivial fixes to Chargelostitem.t Kind of funny that we did not touch this test here. But it passed! Trivial fixes: [1] Typo precessfee [2] Typo the linked [3] Add rollback Test plan: Run t/db_dependent/Circulation/Chargelostitem.t Signed-off-by: Nick Clemens (cherry picked from commit fab9936ddb68e15cae356cb4c52a3be806948f83) Signed-off-by: Jesse Maseto --- t/db_dependent/Circulation/Chargelostitem.t | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Circulation/Chargelostitem.t b/t/db_dependent/Circulation/Chargelostitem.t index 1df27df..7dfb5db 100644 --- a/t/db_dependent/Circulation/Chargelostitem.t +++ b/t/db_dependent/Circulation/Chargelostitem.t @@ -71,8 +71,8 @@ C4::Accounts::chargelostitem( $borrowernumber, $issue->{itemnumber}, '1.00'); my $accountline = Koha::Account::Lines->search( { borrowernumber => $borrowernumber, accounttype => 'PF' } )->next(); -is( int($accountline->amount), int($itemtype->{processfee}), "The accountline amount should be precessfee value " ); -is( $accountline->itemnumber, $itemnumber1, "The accountline itemnumber should the linked with barcode '0101'" ); +is( int($accountline->amount), int($itemtype->{processfee}), "The accountline amount should be processfee value " ); +is( $accountline->itemnumber, $itemnumber1, "The accountline itemnumber should be linked with barcode '0101'" ); is( $accountline->note, C4::Context->preference("ProcessingFeeNote"), "The accountline description should be 'test'" ); my $lost_ao = Koha::Account::Offsets->search( { type => 'Lost Item' } ); @@ -80,3 +80,5 @@ is( $lost_ao->count, 1, 'Account offset of type "Lost Item" created' ); my $processing_fee_ao = Koha::Account::Offsets->search( { type => 'Processing Fee' } ); is( $processing_fee_ao->count, 1, 'Account offset of type "Processing Fee" created' ); + +$schema->storage->txn_rollback; -- 1.7.2.5