Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixed twitch tests in DockerClientImpl
  • Loading branch information
alex.collins committed Nov 3, 2014
commit f0f232fc3996381c4003dc2a31084a806edab723
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ private DockerCmdExecFactory getDockerCmdExecFactory() {

public AuthConfig authConfig() {
checkNotNull(dockerClientConfig.getUsername(), "Configured username is null.");
checkNotNull(dockerClientConfig.getPassword(), "Configured password is null.");
checkNotNull(dockerClientConfig.getEmail(), "Configured email is null.");
checkNotNull(dockerClientConfig.getServerAddress(), "Configured serverAddress is null.");

AuthConfig authConfig = new AuthConfig();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void equals() throws Exception {
public void environmentDockerHost() throws Exception {

// given docker host in env
Map<String, String> env = new HashMap<String, String>(System.getenv());
Map<String, String> env = new HashMap<String, String>();
env.put("DOCKER_HOST", "tcp://baz:8768");

// when you build a config
Expand Down