Skip to content

Commit

Permalink
perltidy
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Sep 10, 2023
1 parent 86df13d commit 537d122
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ requires 'App::Prove';
requires 'Code::TidyAll', '>= 0.74';
requires 'Code::TidyAll::Plugin::Test::Vars', '0.04';
requires 'Perl::Critic', '1.136';
requires 'Perl::Tidy' => '20220613';
requires 'Perl::Tidy' => '20230909';
requires 'Test::Code::TidyAll';
requires 'Test::More', '0.96';
requires 'Test::Needs';
Expand Down
2 changes: 1 addition & 1 deletion t/controller/activity.t
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ my @tests
test_psgi app, sub {
my $cb = shift;
foreach my $test (@tests) {
ok( my $res = $cb->( GET $test), $test );
ok( my $res = $cb->( GET $test ), $test );
is( $res->code, 200, 'code 200' );
is(
$res->header('content-type'),
Expand Down
2 changes: 1 addition & 1 deletion t/controller/author.t
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test_psgi app, sub {
'found a favorite'
);

ok( $res = $cb->( GET $release), "GET $release" );
ok( $res = $cb->( GET $release ), "GET $release" );
is( $res->code, 200, 'code 200' );

ok( $res = $cb->( GET '/author/DOESNTEXIST/releases' ),
Expand Down
2 changes: 1 addition & 1 deletion t/controller/feed.t
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use Try::Tiny qw( catch try );
sub get_feed_ok {
my ( $cb, $test, $extra ) = @_;
subtest $test => sub {
ok( my $res = $cb->( GET $test), $test );
ok( my $res = $cb->( GET $test ), $test );
is( $res->code, 200, 'code 200' );
is(
$res->header('content-type'),
Expand Down
2 changes: 1 addition & 1 deletion t/controller/search.t
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test_psgi app, sub {
);
}

ok( $res = $cb->( GET $release), "GET $release" );
ok( $res = $cb->( GET $release ), "GET $release" );
is( $res->code, 200, 'code 200' );

ok( $res = $cb->( GET '/search?q=RJBS&lucky=1' ),
Expand Down

0 comments on commit 537d122

Please sign in to comment.