We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d46c832 commit 7546becCopy full SHA for 7546bec
src/test/java/org/typesense/api/SynonymsTest.java
@@ -14,6 +14,11 @@ class SynonymsTest {
14
void setUp() throws Exception {
15
helper = new Helper();
16
client = helper.getClient();
17
+
18
+ if (Helper.isV30OrAbove(client)) {
19
+ org.junit.jupiter.api.Assumptions.assumeTrue(false, "Skipping test - requires Typesense v30 or above");
20
+ }
21
22
helper.teardown();
23
helper.createTestCollection();
24
helper.createTestSynonym();
@@ -49,4 +54,4 @@ void testRetrieveAll() throws Exception {
49
54
void testDelete() throws Exception {
50
55
System.out.println(this.client.collections("books").synonyms("coat-synonyms").delete());
51
56
}
52
-}
57
+}
0 commit comments