From 5b28378267f613f9c69c83a496a44ed443edc998 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 13 Jan 2020 16:36:21 +0000 Subject: [PATCH] Bug 23354: (RM follow-up) Reword remaining can_be_added_manually Signed-off-by: Martin Renvoize --- t/db_dependent/Koha/Account/DebitType.t | 14 +++++++------- t/db_dependent/Koha/Account/DebitTypes.t | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/t/db_dependent/Koha/Account/DebitType.t b/t/db_dependent/Koha/Account/DebitType.t index 366a37319c..34e8ceec89 100644 --- a/t/db_dependent/Koha/Account/DebitType.t +++ b/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; diff --git a/t/db_dependent/Koha/Account/DebitTypes.t b/t/db_dependent/Koha/Account/DebitTypes.t index c6b63be54a..0c4812d2bd 100644 --- a/t/db_dependent/Koha/Account/DebitTypes.t +++ b/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; -- 2.39.5