Skip to content

Commit 18f6916

Browse files
committed
correct junit ignore
1 parent 0e84c31 commit 18f6916

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

java-client/src/test/java/co/elastic/clients/elasticsearch/experiments/benchmark/base64vectors/MainCommonBenchmark64.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
import com.fasterxml.jackson.databind.MappingIterator;
2929
import com.fasterxml.jackson.databind.ObjectMapper;
3030
import com.fasterxml.jackson.databind.ObjectWriter;
31-
import org.junit.Ignore;
3231
import org.junit.jupiter.api.BeforeAll;
32+
import org.junit.jupiter.api.Disabled;
3333
import org.junit.jupiter.api.Test;
3434

3535
import java.io.IOException;
@@ -46,15 +46,16 @@
4646
This test compares the speed of serializing and sending vectors to the server
4747
between the standard array of floats and the new base64 format introduced in 9.3
4848
*/
49-
@Ignore
49+
@Disabled
5050
public class MainCommonBenchmark64 {
5151

5252
static ElasticsearchClient elasticsearchClient;
5353

5454
@BeforeAll
5555
public static void setup() {
5656
var server = ElasticsearchTestServer.global();
57-
elasticsearchClient = ElasticsearchTestClient.createClient(server.url(), new JacksonJsonpMapper(), server.sslContext(), null);
57+
elasticsearchClient = ElasticsearchTestClient.createClient(server.url(), new JacksonJsonpMapper(),
58+
server.sslContext(), null);
5859
}
5960

6061
public static List<ElasticsearchDoc> readMultipleObjects(InputStream file) throws IOException {

0 commit comments

Comments
 (0)