Bug 25552: (QA follow-up) Fix spelling mistake
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 22 Jan 2021 13:00:59 +0000 (13:00 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 1 Feb 2021 16:20:37 +0000 (17:20 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
t/db_dependent/Circulation/ReturnClaims.t

index 0e1a1be..7d73b17 100755 (executable)
@@ -151,7 +151,7 @@ subtest 'Test Koha::Checkout::claim_returned, mark as returned' => sub {
     my $checkout2 = Koha::Checkouts->find( $checkout->id );
     is( $checkout2, undef, "Checkout is not longer in the issues table");
     $checkout2 = Koha::Old::Checkouts->find( $checkout->id );
-    is( $checkout2->id, $checkout->id, "Checkout was foudn in the old_issues table");
+    is( $checkout2->id, $checkout->id, "Checkout was found in the old_issues table");
 };
 
 $schema->storage->txn_rollback;