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 @@ -407,9 +407,6 @@ tests:
- class: org.elasticsearch.xpack.esql.analysis.VerifierTests
method: testMatchInsideEval
issue: https://github.com/elastic/elasticsearch/issues/131336
- class: org.elasticsearch.packaging.test.DockerTests
method: test022InstallPluginsFromLocalArchive
issue: https://github.com/elastic/elasticsearch/issues/116866
- class: org.elasticsearch.packaging.test.DockerTests
method: test071BindMountCustomPathWithDifferentUID
issue: https://github.com/elastic/elasticsearch/issues/120917
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void test022InstallPluginsFromLocalArchive() {

listPluginArchive().forEach(System.out::println);
assertThat("Expected " + plugin + " to not be installed", listPlugins(), not(hasItems(plugin)));
assertThat("Expected " + plugin + " available in archive", listPluginArchive(), hasSize(16));
assertThat("Expected " + plugin + " available in archive", listPluginArchive(), hasItems(containsString(plugin)));

// Stuff the proxy settings with garbage, so any attempt to go out to the internet would fail
sh.getEnv()
Expand Down