http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12623

--- Comment #5 from M. de Rooy <[email protected]> ---
This part depends on the order of surnames in the borrowers table:

## Check GetPendingModifications
my $pending = Koha::Borrower::Modifications->GetPendingModifications();
print "ZZZ".$pending->[0]->{firstname}."\n";
ok(
    $pending->[0]->{'firstname'} eq 'Sandy',
    'Test GetPendingModifications() again'
);
ok( $pending->[1]->{'firstname'} eq 'Kyle', 'Test GetPendingModifications()' );

$pending is sorted by surname, firstname
My borrower 2 and 3 apparently had the order of surnames just in reverse as you
had them while testing.

Please make your test independent of this circumstance..

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to