Skip to content

Commit a6b6b4b

Browse files
committed
Fix test
1 parent 86c8d34 commit a6b6b4b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

x-pack/plugin/inference/qa/inference-service-tests/src/javaRestTest/java/org/elasticsearch/xpack/inference/InferenceGetServicesIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void testGetServicesWithoutTaskType() throws IOException {
6464
@SuppressWarnings("unchecked")
6565
public void testGetServicesWithTextEmbeddingTaskType() throws IOException {
6666
List<Object> services = getServices(TaskType.TEXT_EMBEDDING);
67-
assertThat(services.size(), equalTo(16));
67+
assertThat(services.size(), equalTo(15));
6868

6969
String[] providers = new String[services.size()];
7070
for (int i = 0; i < services.size(); i++) {
@@ -86,7 +86,6 @@ public void testGetServicesWithTextEmbeddingTaskType() throws IOException {
8686
"jinaai",
8787
"mistral",
8888
"openai",
89-
"test_service",
9089
"text_embedding_test_service",
9190
"voyageai",
9291
"watsonxai"

0 commit comments

Comments
 (0)