From 406a480a780e67d3386e354907f8fac674257c17 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Feb 2018 11:08:02 -0300 Subject: [PATCH] Bug 20144: [sql_modes] Add default value for export_basket.description in tests Fix for: Field 'description' doesn't have a default value Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice Signed-off-by: Jonathan Druart --- t/db_dependent/Acquisition/GetBasketAsCSV.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/db_dependent/Acquisition/GetBasketAsCSV.t b/t/db_dependent/Acquisition/GetBasketAsCSV.t index 6de23d147e..0f61dc2199 100644 --- a/t/db_dependent/Acquisition/GetBasketAsCSV.t +++ b/t/db_dependent/Acquisition/GetBasketAsCSV.t @@ -37,6 +37,7 @@ my $csv_profile = Koha::CsvProfile->new({ type => 'export_basket', csv_separator => ',', content => 'autor=biblio.author|title=biblio.title|quantity=aqorders.quantity', + description => 'csv profile', })->store; my $csv_profile2 = Koha::CsvProfile->new({ @@ -44,6 +45,7 @@ my $csv_profile2 = Koha::CsvProfile->new({ type => 'export_basket', csv_separator => ',', content => 'biblio.author | title = biblio.title|quantity=aqorders.quantity', + description => 'csv profile 2', })->store; my $basketno; -- 2.20.1