@@ -, +, @@ WARN tidiness The file is less tidy than before (bad/messy lines before: 319, now: 320) --- t/db_dependent/Koha/Objects.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/t/db_dependent/Koha/Objects.t +++ a/t/db_dependent/Koha/Objects.t @@ -1198,7 +1198,10 @@ subtest "filter_by_last_update" => sub { ); is( $rs->filter_by_last_update( - { timestamp_column_name => 'updated_on', from => $now->clone->subtract( days => 1 )->truncate( to => 'day' ) } + { + timestamp_column_name => 'updated_on', + from => $now->clone->subtract( days => 1 )->truncate( to => 'day' ) + } )->count, 6, 'Yesterday, truncated from is inclusive' --