From db62923ebd8d39135922238313fca87036d08cad Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 17 Dec 2018 18:21:04 -0300 Subject: [PATCH] Bug 21999: FIXMEs are fixed! Signed-off-by: Jonathan Druart --- t/db_dependent/Circulation.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 42783ea401..e15d9b510b 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -1233,7 +1233,7 @@ subtest 'CanBookBeIssued & AllowReturnToBranch' => sub { set_userenv($holdingbranch); my $issue = AddIssue( $patron_1->unblessed, $item->{barcode} ); - is( ref($issue), 'Koha::Checkout' ); # FIXME Should be Koha::Checkout + is( ref($issue), 'Koha::Checkout', 'AddIssue should return a Koha::Checkout object' ); my ( $error, $question, $alerts ); @@ -1326,7 +1326,7 @@ subtest 'AddIssue & AllowReturnToBranch' => sub { set_userenv($holdingbranch); - my $ref_issue = 'Koha::Checkout'; # FIXME Should be Koha::Checkout + my $ref_issue = 'Koha::Checkout'; my $issue = AddIssue( $patron_1, $item->{barcode} ); my ( $error, $question, $alerts ); -- 2.11.0