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

Commit dfe876d

Browse files
kvapkelvich
authored andcommitted
Move the builtin lists of workloads and troubles from anonymous array refs into arrays.
1 parent 904e5be commit dfe876d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

testeaux/eaux.pl

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
use Testeaux;
44

5-
Combineaux::combine(
6-
['bank-transfers', 'pgbench-default'],
7-
['split-brain', 'time-shift'],
8-
)
5+
my @workloads = qw(
6+
bank-transfers
7+
pgbench-default
8+
);
9+
my @troubles = qw(
10+
split-brain
11+
time-shift
12+
);
13+
14+
Combineaux::combine(\@workloads, \@troubles);

0 commit comments

Comments
 (0)