Bug 14694 [QA Followup] - Fix typos
authorKyle M Hall <kyle@bywatersolutions.com>
Thu, 22 Oct 2015 13:28:38 +0000 (09:28 -0400)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Mon, 7 Mar 2016 17:48:52 +0000 (17:48 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
t/db_dependent/DecreaseLoanHighHolds.t

index d533a3f..5f5549e 100755 (executable)
@@ -124,7 +124,7 @@ $unholdable->damaged(-1);
 $unholdable->store();
 
 $data = C4::Circulation::checkHighHolds( $item_hr, $patron_hr );
-is( $data->{exceeded}, 1, "Should exceed threshold with one damanged item" );
+is( $data->{exceeded}, 1, "Should exceed threshold with one damaged item" );
 
 $unholdable->damaged(0);
 $unholdable->itemlost(-1);
@@ -138,7 +138,7 @@ $unholdable->notforloan(-1);
 $unholdable->store();
 
 $data = C4::Circulation::checkHighHolds( $item_hr, $patron_hr );
-is( $data->{exceeded}, 1, "Should exceed threshold wiht one notforloan item" );
+is( $data->{exceeded}, 1, "Should exceed threshold with one notforloan item" );
 
 $unholdable->notforloan(0);
 $unholdable->withdrawn(-1);