From 67bbaa2c160307c6e76c5bfe1783d09e600d5854 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 7 Sep 2017 11:48:09 +0200 Subject: [PATCH] Bug 19268: Fix TestBuilder parameter in C/Branch.t and K/P/Messaging.t Content-Type: text/plain; charset=utf-8 The values parameter should be called value. See bug 15339. Test plan: Run the adjusted tests. Signed-off-by: Marcel de Rooy --- t/db_dependent/Circulation/Branch.t | 8 ++++---- t/db_dependent/Koha/Patron/Messages.t | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/t/db_dependent/Circulation/Branch.t b/t/db_dependent/Circulation/Branch.t index 2537723..1be07d9 100644 --- a/t/db_dependent/Circulation/Branch.t +++ b/t/db_dependent/Circulation/Branch.t @@ -65,21 +65,21 @@ my $samplebranch2 = $builder->build({ source => 'Branch' }); # Add itemtypes my $no_circ_itemtype = $builder->build({ source => 'Itemtype', - values => { + value => { rentalcharge => '0', notforloan => 0 } }); my $sampleitemtype1 = $builder->build({ source => 'Itemtype', - values => { + value => { rentalcharge => '10.0', notforloan => 1 } }); my $sampleitemtype2 = $builder->build({ source => 'Itemtype', - values => { + value => { rentalcharge => '5.0', notforloan => 0 } @@ -87,7 +87,7 @@ my $sampleitemtype2 = $builder->build({ # Add Category my $samplecat = $builder->build({ source => 'Category', - values => { + value => { hidelostitems => 0 } }); diff --git a/t/db_dependent/Koha/Patron/Messages.t b/t/db_dependent/Koha/Patron/Messages.t index a64327d..3bd9767 100644 --- a/t/db_dependent/Koha/Patron/Messages.t +++ b/t/db_dependent/Koha/Patron/Messages.t @@ -36,7 +36,7 @@ $schema->storage->txn_begin; my $builder = t::lib::TestBuilder->new; my $library = $builder->build( { source => 'Branch' } ); -my $patron = $builder->build( { source => 'Borrower', values => { branchcode => $library->{branchcode} } } ); +my $patron = $builder->build( { source => 'Borrower', value => { branchcode => $library->{branchcode} } } ); my $patron_2 = $builder->build( { source => 'Borrower' } ); my $nb_of_logaction = get_nb_of_logactions(); my $nb_of_messages = Koha::Patron::Messages->search->count; -- 2.1.4