Bug 20490: Correct bug number typo in comment in Circulation.t
NOTE: Confirmed that the typo of 17641 was part of bug 17941. Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
a7e46047cf
commit
fbf374498b
1 changed files with 2 additions and 2 deletions
|
@ -1545,7 +1545,7 @@ subtest 'MultipleReserves' => sub {
|
|||
|
||||
{
|
||||
my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber1, 1);
|
||||
is($renewokay, 0, 'Bug 17641 - should cover the case where 2 books are both reserved, so failing');
|
||||
is($renewokay, 0, 'Bug 17941 - should cover the case where 2 books are both reserved, so failing');
|
||||
}
|
||||
|
||||
my $barcode3 = 'R00110003';
|
||||
|
@ -1562,7 +1562,7 @@ subtest 'MultipleReserves' => sub {
|
|||
|
||||
{
|
||||
my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber1, 1);
|
||||
is($renewokay, 1, 'Bug 17641 - should cover the case where 2 books are reserved, but a third one is available');
|
||||
is($renewokay, 1, 'Bug 17941 - should cover the case where 2 books are reserved, but a third one is available');
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue