Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Missing var declaration
  • Loading branch information
symkat committed Nov 26, 2021
1 parent 7e7eb9e commit a7e4063
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Web/lib/Test/Mojo/BlogDB.pm
Expand Up @@ -28,6 +28,8 @@ package Test::Mojo::BlogDB;
# ->dump_stash(1)
# ->status_is(200);
#
use warnings;
use strict;
use parent 'Test::Mojo';
use Data::Dumper;
use Test::Deep;
Expand Down Expand Up @@ -66,6 +68,8 @@ sub dump_stash {
return $t;
}

my $ds;

foreach my $key ( keys %{$t->stash}) {
next if $key eq 'controller';
next if $key eq 'action';
Expand Down

0 comments on commit a7e4063

Please sign in to comment.