Skip to content

Commit 4af8e31

Browse files
committed
test: fix expected number of backups
1 parent b966df4 commit 4af8e31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/io/weaviate/integration/tests/backup/BackupTestSuite.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ public static void testListExistingBackups(List<Supplier<Result<BackupCreateResp
337337

338338
assertThat(listResult.getError()).isNull();
339339
assertThat(listResult.getResult()).isNotNull()
340-
.hasSize(2);
340+
.hasSizeGreaterThan(2);
341341
}
342342

343343
public static void testFailOnCreateBackupOnNotExistingBackend(Supplier<Result<BackupCreateResponse>> supplierCreate) {

0 commit comments

Comments
 (0)