Browse Source

Bug 23354: (RM follow-up) Reword remaining can_be_added_manually

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Martin Renvoize 4 years ago
parent
commit
5b28378267
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 14
      t/db_dependent/Koha/Account/DebitType.t
  2. 14
      t/db_dependent/Koha/Account/DebitTypes.t

14
t/db_dependent/Koha/Account/DebitType.t

@ -36,18 +36,18 @@ my $number_of_debit_types = Koha::Account::DebitTypes->search->count;
my $new_debit_type_1 = Koha::Account::DebitType->new(
{
code => '3CODE',
description => 'my description 3',
can_be_added_manually => 1,
default_amount => 0.45,
code => '3CODE',
description => 'my description 3',
can_be_invoiced => 1,
default_amount => 0.45,
}
)->store;
my $new_debit_type_2 = Koha::Account::DebitType->new(
{
code => '4CODE',
description => 'my description 4',
can_be_added_manually => 1,
code => '4CODE',
description => 'my description 4',
can_be_invoiced => 1,
}
)->store;

14
t/db_dependent/Koha/Account/DebitTypes.t

@ -37,18 +37,18 @@ my $number_of_debit_types = Koha::Account::DebitTypes->search->count;
my $new_debit_type_1 = Koha::Account::DebitType->new(
{
code => '3CODE',
description => 'my description 3',
can_be_added_manually => 1,
default_amount => 0.45,
code => '3CODE',
description => 'my description 3',
can_be_invoiced => 1,
default_amount => 0.45,
}
)->store;
my $new_debit_type_2 = Koha::Account::DebitType->new(
{
code => '4CODE',
description => 'my description 4',
can_be_added_manually => 1,
code => '4CODE',
description => 'my description 4',
can_be_invoiced => 1,
}
)->store;

Loading…
Cancel
Save