Bug 10855: Make tests to pass
authorJonathan Druart <jonathan.druart@biblibre.com>
Thu, 15 Jan 2015 14:36:27 +0000 (15:36 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 2 Oct 2015 18:10:31 +0000 (15:10 -0300)
Some recent changes in master make these tests fail.

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
t/db_dependent/AdditionalField.t

index df307a4..ed28580 100644 (file)
@@ -3,6 +3,7 @@
 use Modern::Perl;
 use Test::More tests => 37;
 
+use C4::Bookseller qw( AddBookseller );
 use C4::Context;
 use Koha::AdditionalField;
 
@@ -121,7 +122,6 @@ my $budgetid;
 my $bpid = AddBudgetPeriod({
     budget_period_startdate => '01-01-2015',
     budget_period_enddate   => '01-01-2016',
-    budget_description      => "budget desc"
 });
 
 my $budget_id = AddBudget({
@@ -129,8 +129,6 @@ my $budget_id = AddBudget({
     budget_amount      => "123.132",
     budget_name        => "Périodiques",
     budget_notes       => "This is a note",
-    budget_description => "Serials",
-    budget_active      => 1,
     budget_period_id   => $bpid
 });