Browse Source

gofmt node_exporter_test

pull/653/head
Matthias Rampke 7 years ago
parent
commit
5aa6819eb1
  1. 3
      node_exporter_test.go

3
node_exporter_test.go

@ -16,6 +16,7 @@ import (
var (
binary = filepath.Join(os.Getenv("GOPATH"), "bin/node_exporter")
)
const (
address = "localhost:19100"
)
@ -118,7 +119,7 @@ func runCommandAndTests(cmd *exec.Cmd, address string, fn func(pid int) error) e
break
}
time.Sleep(500 * time.Millisecond)
if cmd.Process== nil || i == 9 {
if cmd.Process == nil || i == 9 {
return fmt.Errorf("can't start command")
}
}

Loading…
Cancel
Save