You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting the following error when testing on a bosh 1.x line:
• Failure [8.380 seconds]
BOSH Kit
/Users/dbell/code/src/github.com/genesis-community/bosh-genesis-kit/spec/spec_test.go:11
cpis
/Users/dbell/code/src/github.com/genesis-community/bosh-genesis-kit/spec/spec_test.go:48
given a environment manifest: spec/deployments/aws.yml
/Users/dbell/lib/go/pkg/mod/github.com/genesis-community/[email protected]/testing/testing.go:72
renders a manifest which matches: spec/results/aws.yml [It]
/Users/dbell/lib/go/pkg/mod/github.com/genesis-community/[email protected]/testing/testing.go:49
Expected
<int>: -1
to equal
<int>: 0
/Users/dbell/lib/go/pkg/mod/github.com/genesis-community/[email protected]/testing/bosh.go:42
This version of the bosh kit doesn't use bosh-variables, which results in having an empty hash as the value, which seems to result in bosh int returning a -1 without stderr or stdout output. My naive solution is to apply the following to testing/testing.go, but there may be a more golang-way of doing it.
which version of the bosh-cli did you use? Asking because there are tests for this case already in the spec dir, baseline.yml for example does not use bosh-variables.
Getting the following error when testing on a bosh 1.x line:
This version of the bosh kit doesn't use bosh-variables, which results in having an empty hash as the value, which seems to result in
bosh int
returning a -1 without stderr or stdout output. My naive solution is to apply the following totesting/testing.go
, but there may be a more golang-way of doing it.The text was updated successfully, but these errors were encountered: