Skip to content

Commit

Permalink
Switch to junit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotschi committed May 24, 2023
1 parent 6bd91de commit 6f5b7a9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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();
Expand All @@ -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));
Expand Down

0 comments on commit 6f5b7a9

Please sign in to comment.