From eb979680d7600e8c7e71ddd71003692cff95f9c7 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 Signed-off-by: Nick Clemens --- 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 d051634599..0e3fd43c8a 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -1217,7 +1217,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 ); @@ -1310,7 +1310,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.39.2