From 40480c2e16f3058a0e6cb6e4cb743cffe4065eb5 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Tue, 12 Dec 2017 10:28:40 -0300
Subject: [PATCH] Bug 19655: Use ->build instead of build_object in 16.11.x

The build_object method of TestBuilder has been added by bug 18182,
which is not in 16.11.x

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
---
 t/db_dependent/Template/Plugin/To.t | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/t/db_dependent/Template/Plugin/To.t b/t/db_dependent/Template/Plugin/To.t
index 033891f816..1b0321847f 100644
--- a/t/db_dependent/Template/Plugin/To.t
+++ b/t/db_dependent/Template/Plugin/To.t
@@ -29,9 +29,9 @@ my $builder = t::lib::TestBuilder->new;
 
 subtest 'json' => sub {
     plan tests => 1;
-    my $patron = $builder->build_object(
+    my $patron = $builder->build(
         {
-            class => 'Koha::Patrons',
+            source => 'Borrower',
             value => {
                 borrowernotes => q|
 several
@@ -40,7 +40,7 @@ lines|,
         }
     );
     my $expected_escaped_notes = q|\\\\nseveral\\\\nlines|;
-    is( Koha::Template::Plugin::To->json( $patron->borrowernotes ), $expected_escaped_notes );
+    is( Koha::Template::Plugin::To->json( $patron->{borrowernotes} ), $expected_escaped_notes );
 };
 
 $schema->storage->txn_rollback;
-- 
2.11.0