Commit 2fff555e authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

fmt

parent 020e719e
......@@ -25,7 +25,7 @@ import (
// communicator packer.Communicator
type stepWaitForSSH struct {
cancel bool
comm packer.Communicator
comm packer.Communicator
}
func (s *stepWaitForSSH) Run(state map[string]interface{}) multistep.StepAction {
......
......@@ -15,7 +15,7 @@ import (
type comm struct {
client *ssh.ClientConn
config *Config
conn net.Conn
conn net.Conn
}
// Config is the structure used to configure the SSH communicator.
......
......@@ -125,7 +125,7 @@ func TestNew_Invalid(t *testing.T) {
config := &Config{
Connection: conn,
SSHConfig: clientConfig,
SSHConfig: clientConfig,
}
_, err := New(config)
......@@ -152,7 +152,7 @@ func TestStart(t *testing.T) {
config := &Config{
Connection: conn,
SSHConfig: clientConfig,
SSHConfig: clientConfig,
}
client, err := New(config)
......
......@@ -12,6 +12,6 @@ import (
func ConnectFunc(network, addr string) func() (net.Conn, error) {
return func() (net.Conn, error) {
log.Printf("Opening conn for SSH to %s %s", network, addr)
return net.DialTimeout(network, addr, 15 * time.Second)
return net.DialTimeout(network, addr, 15*time.Second)
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment