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:
Lari Taskula 2018-03-28 21:19:52 +00:00 committed by Jonathan Druart
parent a7e46047cf
commit fbf374498b

View file

@ -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');
}
};