mirror of https://github.com/docker/docs.git
updated integration tests
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
parent
946db8a08d
commit
f4cf4ce801
|
@ -8,8 +8,8 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
machineName = "machine-integration-test-%s"
|
||||
var (
|
||||
machineName = fmt.Sprintf("machine-test-%d", time.Now().UnixNano()) + "-%s"
|
||||
)
|
||||
|
||||
func machineCreate(name string, t *testing.T, wg *sync.WaitGroup) {
|
||||
|
|
|
@ -64,7 +64,6 @@ func init() {
|
|||
out, _, err := runCommandWithOutput(whichCmd)
|
||||
if err == nil {
|
||||
machineBinary = stripTrailingCharacters(out)
|
||||
|
||||
} else {
|
||||
fmt.Printf("ERROR: couldn't resolve full path to the Machine binary")
|
||||
os.Exit(1)
|
||||
|
|
Loading…
Reference in New Issue