From: Kyle M Hall Date: Thu, 13 Dec 2012 18:10:52 +0000 (-0500) Subject: Bug 7067 - QA Followup - Fix failing tests X-Git-Tag: v3.12.00-alpha~317 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=06a1287c7415269f7582e8488ce4c458ae772d33;p=srvgit Bug 7067 - QA Followup - Fix failing tests Signed-off-by: Jared Camins-Esakov --- 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');