From 9af0cd0b9d47f5f89d2d476b18ad58a0e0b21f8a 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 --- 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 130de065fb..5e13ce6856 100644 --- a/t/db_dependent/Acquisition/GetBasketAsCSV.t +++ b/t/db_dependent/Acquisition/GetBasketAsCSV.t @@ -36,6 +36,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({ @@ -43,6 +44,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.14.2