diff --git a/t/test/mojo.t b/t/test/mojo.t index b6cf0404ce..4489f64ad6 100644 --- a/t/test/mojo.t +++ b/t/test/mojo.t @@ -115,19 +115,16 @@ subtest 'content_type_isnt' => sub { subtest 'content_type_like' => sub { $t->content_type_like(qr/text\/html;charset=UTF-8/); - is_deeply \@args, - ['like', 'text/html;charset=UTF-8', qr/text\/html;charset=UTF-8/, 'Content-Type is similar'], + is_deeply \@args, ['like', 'text/html;charset=UTF-8', qr/text\/html;charset=UTF-8/, 'Content-Type is similar'], 'right result'; $t->content_type_like(qr/text\/html;charset=UTF-8/, 'some description'); - is_deeply \@args, - ['like', 'text/html;charset=UTF-8', qr/text\/html;charset=UTF-8/, 'some description'], + is_deeply \@args, ['like', 'text/html;charset=UTF-8', qr/text\/html;charset=UTF-8/, 'some description'], 'right result'; }; subtest 'content_type_unlike' => sub { $t->content_type_unlike(qr/image\/png/); - is_deeply \@args, - ['unlike', 'text/html;charset=UTF-8', qr/image\/png/, 'Content-Type is not similar'], + is_deeply \@args, ['unlike', 'text/html;charset=UTF-8', qr/image\/png/, 'Content-Type is not similar'], 'right result'; $t->content_type_unlike(qr/image\/png/, 'some description'); is_deeply \@args, ['unlike', 'text/html;charset=UTF-8', qr/image\/png/, 'some description'], 'right result';