Skip to content

Commit 7681147

Browse files
committed
enabled ArangoSearchTest for 3.10 cluster
1 parent bedf62a commit 7681147

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

src/test/java/com/arangodb/ArangoSearchTest.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import com.arangodb.model.InvertedIndexOptions;
2929
import com.arangodb.model.arangosearch.*;
3030
import org.junit.jupiter.api.BeforeAll;
31-
import org.junit.jupiter.api.BeforeEach;
3231
import org.junit.jupiter.params.ParameterizedTest;
3332
import org.junit.jupiter.params.provider.MethodSource;
3433

@@ -52,11 +51,6 @@ static void init() {
5251
initCollections(COLL_1, COLL_2);
5352
}
5453

55-
@BeforeEach
56-
void setUp() {
57-
assumeTrue(isLessThanVersion(3, 10) || isSingleServer());
58-
}
59-
6054
@ParameterizedTest(name = "{index}")
6155
@MethodSource("dbs")
6256
void exists(ArangoDatabase db) {

src/test/java/com/arangodb/async/ArangoSearchTest.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020

2121
package com.arangodb.async;
2222

23-
import com.arangodb.ArangoCollection;
2423
import com.arangodb.ArangoDBException;
25-
import com.arangodb.ArangoDatabase;
2624
import com.arangodb.entity.InvertedIndexField;
2725
import com.arangodb.entity.ViewEntity;
2826
import com.arangodb.entity.ViewType;
@@ -31,10 +29,7 @@
3129
import com.arangodb.model.InvertedIndexOptions;
3230
import com.arangodb.model.arangosearch.*;
3331
import org.junit.jupiter.api.BeforeAll;
34-
import org.junit.jupiter.api.BeforeEach;
3532
import org.junit.jupiter.api.Test;
36-
import org.junit.jupiter.params.ParameterizedTest;
37-
import org.junit.jupiter.params.provider.MethodSource;
3833

3934
import java.util.*;
4035
import java.util.concurrent.ExecutionException;
@@ -62,11 +57,6 @@ static void setup() throws InterruptedException, ExecutionException {
6257
db.createCollection(COLL_2).get();
6358
}
6459

65-
@BeforeEach
66-
void setUp() throws ExecutionException, InterruptedException {
67-
assumeTrue(isLessThanVersion(3, 10) || isSingleServer());
68-
}
69-
7060
@Test
7161
void exists() throws InterruptedException, ExecutionException {
7262
assumeTrue(isAtLeastVersion(3, 4));

0 commit comments

Comments
 (0)