@@ -, +, @@ because of bug 19686 --> without patch the list subtest fail --> with patch test pass --- Koha/REST/V1/Patrons.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/Koha/REST/V1/Patrons.pm +++ a/Koha/REST/V1/Patrons.pm @@ -44,8 +44,8 @@ sub list { return try { my $patrons_set = Koha::Patrons->new; - my @patrons = $c->objects->search( $patrons_set )->as_list; - return $c->render( status => 200, openapi => \@patrons ); + my $patrons = $c->objects->search( $patrons_set ); + return $c->render( status => 200, openapi => $patrons ); } catch { if ( $_->isa('DBIx::Class::Exception') ) { --