File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
yaml-tests/src/test/java/com/apple/foundationdb/relational/yamltests/server Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 20
20
21
21
package com .apple .foundationdb .relational .yamltests .server ;
22
22
23
+ import com .apple .foundationdb .test .FDBTestEnvironment ;
23
24
import org .assertj .core .api .Assertions ;
24
25
import org .junit .jupiter .api .BeforeEach ;
25
26
import org .junit .jupiter .api .Test ;
@@ -54,8 +55,9 @@ private static File getCurrentServerPath() throws IOException {
54
55
@ Test
55
56
void startMultiple () throws Exception {
56
57
final List <ExternalServer > servers = new ArrayList <>();
58
+ final String clusterFile = FDBTestEnvironment .randomClusterFile ();
57
59
for (int i = 0 ; i < 3 ; i ++) {
58
- servers .add (new ExternalServer (currentServerPath , null ));
60
+ servers .add (new ExternalServer (currentServerPath , clusterFile ));
59
61
}
60
62
try {
61
63
for (final ExternalServer server : servers ) {
You can’t perform that action at this time.
0 commit comments