Bug 16407: Simplify comments
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 2 May 2016 09:46:59 +0000 (10:46 +0100)
committerChris Cormack <chrisc@catalyst.net.nz>
Mon, 20 Jun 2016 20:50:56 +0000 (08:50 +1200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
(cherry picked from commit 671f81e877a3e23127a2e8078921760e9b449a27)
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
(cherry picked from commit 4b0c36846117212cff4db09f06f719be5aea308e)
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>

t/db_dependent/Koha_borrower_modifications.t

index 7e8ab7b..e2ab5f5 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::Borrower::Modifications->new( borrowernumber => $borr1 )
@@ -59,7 +58,7 @@ Koha::Borrower::Modifications->new( borrowernumber => $borr1 )
 ok( Koha::Borrower::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::Borrower::Modifications->new( borrowernumber => $borr2 )
   ->AddModifications( { surname => 'Smith', firstname => 'Sandy' } );