Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Feb 21, 2014
1 parent d44a42b commit e3c0715
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion builder/googlecompute/step_instance_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
type StepInstanceInfo struct {
Debug bool

info int
info int
}

// Run executes the Packer build step that gathers GCE instance info.
Expand Down
4 changes: 2 additions & 2 deletions builder/vmware/iso/driver_esx5_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ func TestESX5Driver_implRemoteDriver(t *testing.T) {
}

func TestESX5Driver_HostIP(t *testing.T) {
expected_host := "127.0.0.1"
expected_host := "127.0.0.1"

//create mock SSH server
//create mock SSH server
listen, _ := net.Listen("tcp", fmt.Sprintf("%s:0", expected_host))
port := listen.Addr().(*net.TCPAddr).Port
defer listen.Close()
Expand Down
2 changes: 1 addition & 1 deletion packer/rpc/muxconn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func TestMuxConn_lotsOfData(t *testing.T) {
t.Fatalf("err: %s", err)
}

for i := 0; i < 4096 * 4; i++ {
for i := 0; i < 4096*4; i++ {
if _, err := s0.Write([]byte("hello")); err != nil {
t.Fatalf("err: %s", err)
}
Expand Down

0 comments on commit e3c0715

Please sign in to comment.