fixed deploy unit tests
This commit is contained in:
parent
a9f2affd5c
commit
51a0407101
3 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@ func setUpWithBash(input string) (string, error) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
bf := buildfile.New()
|
bf := buildfile.New()
|
||||||
buildStruct.Deploy.Write(bf)
|
buildStruct.Deploy.Write(bf, nil)
|
||||||
return bf.String(), err
|
return bf.String(), err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ func setUpWithCF(input string) (string, error) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
bf := buildfile.New()
|
bf := buildfile.New()
|
||||||
buildStruct.Deploy.Write(bf)
|
buildStruct.Deploy.Write(bf, nil)
|
||||||
return bf.String(), err
|
return bf.String(), err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ func setUp(input string) (string, error) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
bf := buildfile.New()
|
bf := buildfile.New()
|
||||||
buildStruct.Deploy.Write(bf)
|
buildStruct.Deploy.Write(bf, nil)
|
||||||
return bf.String(), err
|
return bf.String(), err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue