From b305ccbecbc4c7167e0ae10aaac0b386b2875c42 Mon Sep 17 00:00:00 2001 From: rage311 Date: Fri, 30 Oct 2020 08:35:43 -0600 Subject: [PATCH] Formatted with perltidy --- t/test/mojo.t | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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';