Skip to content

Commit 1ee4f4a

Browse files
Remove non-applicable tests
1 parent 00bb6de commit 1ee4f4a

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

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

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -45,28 +45,6 @@ public void testPutModel_RestrictedWithBasicLicense() throws Exception {
4545
sendRestrictedRequest("PUT", endpoint, modelConfig);
4646
}
4747

48-
public void testUpdateModel_RestrictedWithBasicLicense() throws Exception {
49-
var endpoint = Strings.format("_inference/%s/%s/_update?error_trace", TaskType.SPARSE_EMBEDDING, "endpoint-id");
50-
var requestBody = """
51-
{
52-
"task_settings": {
53-
"num_threads": 2
54-
}
55-
}
56-
""";
57-
sendRestrictedRequest("PUT", endpoint, requestBody);
58-
}
59-
60-
public void testPerformInference_RestrictedWithBasicLicense() throws Exception {
61-
var endpoint = Strings.format("_inference/%s/%s?error_trace", TaskType.SPARSE_EMBEDDING, "endpoint-id");
62-
var requestBody = """
63-
{
64-
"input": ["washing", "machine"]
65-
}
66-
""";
67-
sendRestrictedRequest("POST", endpoint, requestBody);
68-
}
69-
7048
public void testGetServices_NonRestrictedWithBasicLicense() throws Exception {
7149
var endpoint = "_inference/_services";
7250
sendNonRestrictedRequest("GET", endpoint, null, 200, false);

0 commit comments

Comments
 (0)