Skip to content
This repository has been archived by the owner on Mar 21, 2022. It is now read-only.

Commit

Permalink
Fixed some checkstyle issues related to import ordering, and some ind…
Browse files Browse the repository at this point in the history
…entation that got introduced after last merge
  • Loading branch information
catalyst7193 committed Jun 29, 2017
1 parent 8dd8d23 commit da0fe79
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
import com.google.common.collect.Lists;
import com.google.common.io.BaseEncoding;
import com.google.common.io.Resources;
import com.spotify.docker.FixtureUtil;
import com.spotify.docker.client.auth.RegistryAuthSupplier;
import com.spotify.docker.client.exceptions.DockerCertificateException;
import com.spotify.docker.client.exceptions.DockerException;
Expand All @@ -53,9 +52,9 @@
import com.spotify.docker.client.messages.HostConfig;
import com.spotify.docker.client.messages.RegistryAuth;
import com.spotify.docker.client.messages.RegistryConfigs;
import com.spotify.docker.client.messages.swarm.EngineConfig;
import com.spotify.docker.client.messages.ServiceCreateResponse;
import com.spotify.docker.client.messages.swarm.ContainerSpec;
import com.spotify.docker.client.messages.swarm.EngineConfig;
import com.spotify.docker.client.messages.swarm.Node;
import com.spotify.docker.client.messages.swarm.NodeDescription;
import com.spotify.docker.client.messages.swarm.NodeInfo;
Expand Down Expand Up @@ -340,10 +339,8 @@ public void testInspectNode() throws Exception {
enqueueServerApiVersion("1.28");
enqueueServerApiResponse(200, "fixtures/1.28/nodeInfo.json");

final
final NodeInfo nodeInfo = dockerClient.inspectNode("24ifsmvkjbyhk");


NodeInfo nodeInfo = dockerClient.inspectNode("24ifsmvkjbyhk");
assertThat(nodeInfo, notNullValue());
assertThat(nodeInfo.id(), is("24ifsmvkjbyhk"));
assertThat(nodeInfo.status(), notNullValue());
Expand Down

0 comments on commit da0fe79

Please sign in to comment.