From 6f5b7a904aff386af537d3b9c597b2ace7f031d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=BCth?= Date: Wed, 24 May 2023 23:19:42 +0200 Subject: [PATCH] Switch to junit 5 --- .../qdrant/client/http/method/ClusterHttpClientTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/src/test/java/io/metaloom/qdrant/client/http/method/ClusterHttpClientTest.java b/http/src/test/java/io/metaloom/qdrant/client/http/method/ClusterHttpClientTest.java index e937f4d..b1aeb82 100644 --- a/http/src/test/java/io/metaloom/qdrant/client/http/method/ClusterHttpClientTest.java +++ b/http/src/test/java/io/metaloom/qdrant/client/http/method/ClusterHttpClientTest.java @@ -2,8 +2,8 @@ import java.math.BigInteger; -import org.junit.Ignore; -import org.junit.Test; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; import io.metaloom.qdrant.client.http.AbstractHTTPClientTest; import io.metaloom.qdrant.client.http.impl.HttpErrorException; @@ -20,7 +20,7 @@ public void testGetClusterStatusInfo() throws HttpErrorException { @Test @Override - @Ignore("Clustering not implemented for test environment") + @Disabled("Clustering not implemented for test environment") public void testRemovePeerFromCluster() throws HttpErrorException { createTestCollection(); BigInteger peerId = invoke(client.getCollectionClusterInfo(TEST_COLLECTION_NAME)).getResult().getPeerId(); @@ -36,7 +36,7 @@ public void testCollectionClusterInfo() throws HttpErrorException { @Test @Override - @Ignore("Clustering not implemented for test environment") + @Disabled("Clustering not implemented for test environment") public void testUpdateCollectionClusterSetup() throws HttpErrorException { CollectionUpdateClusterSetupRequest request = new CollectionUpdateClusterSetupRequest(); invoke(client.updateCollectionClusterSetup(TEST_COLLECTION_NAME, request));