Skip to content

Commit aa9b1d9

Browse files
Fixing the expected values
1 parent 25dce72 commit aa9b1d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public void testGetServicesWithTextEmbeddingTaskType() throws IOException {
108108

109109
public void testGetServicesWithRerankTaskType() throws IOException {
110110
List<Object> services = getServices(TaskType.RERANK);
111-
assertThat(services.size(), equalTo(9));
111+
assertThat(services.size(), equalTo(8));
112112

113113
var providers = providers(services);
114114

@@ -131,7 +131,7 @@ public void testGetServicesWithRerankTaskType() throws IOException {
131131

132132
public void testGetServicesWithCompletionTaskType() throws IOException {
133133
List<Object> services = getServices(TaskType.COMPLETION);
134-
assertThat(services.size(), equalTo(13));
134+
assertThat(services.size(), equalTo(12));
135135

136136
var providers = providers(services);
137137

0 commit comments

Comments
 (0)