Skip to content

Commit 47e0005

Browse files
committed
test(backup): fix missing parameter
1 parent d29f32d commit 47e0005

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/it/java/io/weaviate/integration/BackupITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public void test_lifecycle_async() throws ExecutionException, InterruptedExcepti
245245
@Test(expected = IllegalStateException.class)
246246
public void test_waitForCompletion_unknown() throws IOException, TimeoutException {
247247
var backup = new Backup("#1", "/tmp/bak/#1", "filesystem", List.of("Things"), BackupStatus.STARTED,
248-
null, null, null, null, null);
248+
null, null, null, null, null, null);
249249
backup.waitForCompletion(client);
250250
}
251251

0 commit comments

Comments
 (0)