From 06a1287c7415269f7582e8488ce4c458ae772d33 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 13 Dec 2012 13:10:52 -0500 Subject: [PATCH] Bug 7067 - QA Followup - Fix failing tests Signed-off-by: Jared Camins-Esakov --- t/db_dependent/Koha_borrower_modifications.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Koha_borrower_modifications.t b/t/db_dependent/Koha_borrower_modifications.t index 6a7c4c4b19..9849502a06 100755 --- a/t/db_dependent/Koha_borrower_modifications.t +++ b/t/db_dependent/Koha_borrower_modifications.t @@ -63,11 +63,11 @@ ok( ## Check GetPendingModifications my $pending = Koha::Borrower::Modifications->GetPendingModifications(); -ok( $pending->[0]->{'firstname'} eq 'Kyle', 'Test GetPendingModifications()' ); ok( - $pending->[1]->{'firstname'} eq 'Sandy', + $pending->[0]->{'firstname'} eq 'Sandy', 'Test GetPendingModifications() again' ); +ok( $pending->[1]->{'firstname'} eq 'Kyle', 'Test GetPendingModifications()' ); ## This should delete the row from the table Koha::Borrower::Modifications->DenyModifications('3'); -- 2.39.5