Skip to content

Commit 04134df

Browse files
committed
Move the builtin lists of workloads and troubles from anonymous array refs into arrays.
1 parent 0f96817 commit 04134df

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

contrib/mmts/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)