Skip to content

Commit dae9a82

Browse files
committed
ExternalServerTest needs to provide a clusterFile
1 parent 44037f2 commit dae9a82

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

yaml-tests/src/test/java/com/apple/foundationdb/relational/yamltests/server/ExternalServerTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
package com.apple.foundationdb.relational.yamltests.server;
2222

23+
import com.apple.foundationdb.test.FDBTestEnvironment;
2324
import org.assertj.core.api.Assertions;
2425
import org.junit.jupiter.api.BeforeEach;
2526
import org.junit.jupiter.api.Test;
@@ -54,8 +55,9 @@ private static File getCurrentServerPath() throws IOException {
5455
@Test
5556
void startMultiple() throws Exception {
5657
final List<ExternalServer> servers = new ArrayList<>();
58+
final String clusterFile = FDBTestEnvironment.randomClusterFile();
5759
for (int i = 0; i < 3; i++) {
58-
servers.add(new ExternalServer(currentServerPath, null));
60+
servers.add(new ExternalServer(currentServerPath, clusterFile));
5961
}
6062
try {
6163
for (final ExternalServer server : servers) {

0 commit comments

Comments
 (0)