@@ -, +, @@ --- Koha/Acquisition/Bookseller.pm | 1 - t/db_dependent/Bookseller.t | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) --- a/Koha/Acquisition/Bookseller.pm +++ a/Koha/Acquisition/Bookseller.pm @@ -82,7 +82,6 @@ on the API. sub to_api_mapping { return { - currency => undef, listprice => 'list_currency', invoiceprice => 'invoice_currency', gstreg => 'gst', --- a/t/db_dependent/Bookseller.t +++ a/t/db_dependent/Bookseller.t @@ -765,10 +765,7 @@ $schema->storage->txn_rollback(); sub field_filter { my ($struct) = @_; - for my $field ( - 'currency', 'invoiceprice', - 'listprice', 'contacts' - ) + for my $field ( qw(invoiceprice listprice contacts) ) { if ( grep { /^$field$/ } keys %$struct ) { --