Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,6 @@ tests:
- class: org.elasticsearch.reindex.management.ReindexManagementClientYamlTestSuiteIT
method: test {yaml=reindex/30_cancel_reindex/Cancel running reindex returns response and GET confirms completed}
issue: https://github.com/elastic/elasticsearch/issues/142079
- class: org.elasticsearch.xpack.sql.qa.security.CliApiKeyIT
method: testCliConnectionWithApiKey
issue: https://github.com/elastic/elasticsearch/issues/143125
- class: org.elasticsearch.packaging.test.DebMetadataTests
method: test05CheckLintian
issue: https://github.com/elastic/elasticsearch/issues/142819
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

import static org.elasticsearch.xpack.sql.qa.security.RestSqlIT.SSL_ENABLED;
import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.assertEquals;

/**
* Integration tests for CLI connections using API key authentication.
Expand Down Expand Up @@ -65,6 +66,7 @@ public void testCliConnectionWithApiKey() throws Exception {
cli.readLine(); // separator line
String valueLine = cli.readLine();
assertThat(valueLine, containsString("123"));
assertEquals("", cli.readLine());
}
}

Expand Down