Bug 16407: Simplify comments
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 2 May 2016 09:46:59 +0000 (10:46 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Tue, 3 May 2016 15:28:23 +0000 (15:28 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
t/db_dependent/Koha_borrower_modifications.t

index 7763e5e..f98dfeb 100755 (executable)
@@ -48,8 +48,7 @@ ok(
     'Test that Verify() method fails for a bad token'
 );
 
-## Create new pending modification, but for an existing borrower
-## But not a hardcoded borrowernumber of course (Bug 16407)
+## Create new pending modification for a patron
 my $builder = t::lib::TestBuilder->new;
 my $borr1 = $builder->build({ source => 'Borrower' })->{borrowernumber};
 Koha::Patron::Modifications->new( borrowernumber => $borr1 )
@@ -59,7 +58,7 @@ Koha::Patron::Modifications->new( borrowernumber => $borr1 )
 ok( Koha::Patron::Modifications->GetPendingModificationsCount() == 1,
     'Test GetPendingModificationsCount()' );
 
-## Create new pending modification for another existing borrower
+## Create new pending modification for another patron
 my $borr2 = $builder->build({ source => 'Borrower' })->{borrowernumber};
 Koha::Patron::Modifications->new( borrowernumber => $borr2 )
   ->AddModifications( { surname => 'Smith', firstname => 'Sandy' } );