Skip to content

Commit 4546f58

Browse files
committed
fix spotless issue
1 parent a979ed1 commit 4546f58

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

qa/packaging/src/test/java/org/elasticsearch/packaging/test/DockerTests.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,22 +173,16 @@ public void test012SecurityCanBeDisabled() throws Exception {
173173
assertThat(unauthStatusCode, equalTo(200));
174174
}
175175

176-
177176
/**
178177
* Checks that dotted env vars are respected
179178
*/
180179
public void test013DottedEnvVarsPersist() throws Exception {
181-
runContainer(
182-
distribution(),
183-
builder().volume(tempDir, "/usr/share/elasticsearch/config")
184-
.envVar("discovery.seed_hosts", "host1")
185-
);
180+
runContainer(distribution(), builder().volume(tempDir, "/usr/share/elasticsearch/config").envVar("discovery.seed_hosts", "host1"));
186181
waitForElasticsearch(installation);
187182
Result result = sh.run("env | grep discovery");
188183
assertThat(result.stdout(), containsString("discovery.seed_hosts=host1"));
189184
}
190185

191-
192186
/**
193187
* Checks that no plugins are initially active.
194188
*/

0 commit comments

Comments
 (0)