From 24e04d80cb3d55bb868333137c8704b3270a9a92 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 29 Jun 2018 11:52:16 -0300 Subject: [PATCH] Bug 21023: Remove warning in t/db_dependent/Circulation/Chargelostitem.t To test: - Run: $ kshell k$ prove t/db_dependent/Circulation/Chargelostitem.t => FAIL: Warning is displayed - Apply this patch - Run: k$ prove t/db_dependent/Circulation/Chargelostitem.t => SUCCESS: Tests pass! No warning! - Sign off :-D Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Circulation/Chargelostitem.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/db_dependent/Circulation/Chargelostitem.t b/t/db_dependent/Circulation/Chargelostitem.t index 2848f60b80..658400c924 100644 --- a/t/db_dependent/Circulation/Chargelostitem.t +++ b/t/db_dependent/Circulation/Chargelostitem.t @@ -76,8 +76,8 @@ is( int($accountline->amount), int($itemtype->{processfee}), "The accountline am is( $accountline->itemnumber, $itemnumber1, "The accountline itemnumber should the linked with barcode '0101'" ); is( $accountline->note, C4::Context->preference("ProcessingFeeNote"), "The accountline description should be 'test'" ); -my $lost_ao = Koha::Account::Offsets->single( { type => 'Lost Item' } ); -ok( $lost_ao, 'Account offset of type "Lost Item" created' ); +my $lost_ao = Koha::Account::Offsets->search( { type => 'Lost Item' } ); +is( $lost_ao->count, 1, 'Account offset of type "Lost Item" created' ); -my $processing_fee_ao = Koha::Account::Offsets->single( { type => 'Processing Fee' } ); -ok( $processing_fee_ao, 'Account offset of type "Processing Fee" 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' ); -- 2.18.0