From 201e1413f7415439eac9f88b658fa220ef861aee 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 --- 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 d533a3f..5f5549e 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.1.4