Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 089b2d5

Browse files
kvapkelvich
authored andcommitted
Fix a warning about variable redeclaration in tap-test 003.
1 parent d8baade commit 089b2d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/003_pgbench.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
$cluster->configure();
1515
$cluster->start();
1616

17-
my ($rc, $out, $err);
17+
my ($rc, $in, $out, $err);
1818

1919
diag("sleeping 10");
2020
sleep(10);
@@ -86,8 +86,8 @@ sub writer
8686
}
8787

8888
diag("starting benches");
89-
my $in = '';
90-
my $out = '';
89+
$in = '';
90+
$out = '';
9191
my @benches = ();
9292
foreach my $node (@{$cluster->{nodes}})
9393
{

0 commit comments

Comments
 (0)