From 15947a7565c3f4ed874ce04add8a909270e9ce87 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 22 Oct 2015 09:28:38 -0400 Subject: [PATCH] Bug 14694 [QA Followup] - Fix typos Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher --- t/db_dependent/DecreaseLoanHighHolds.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/DecreaseLoanHighHolds.t b/t/db_dependent/DecreaseLoanHighHolds.t index d533a3fe1d..5f5549ea09 100755 --- a/t/db_dependent/DecreaseLoanHighHolds.t +++ b/t/db_dependent/DecreaseLoanHighHolds.t @@ -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); -- 2.39.5