Skip to content

Commit

Permalink
fixup! e2e: call contrast set from Go
Browse files Browse the repository at this point in the history
  • Loading branch information
burgerdev committed Mar 12, 2024
1 parent 1d74b9e commit 1849025
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/openssl/openssl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ func TestOpenSSL(t *testing.T) {
require.NoError(err)
defer cancelPortForward()

resources, err := filepath.Glob("../../workspace/deployment/*.yml")
resources, err := filepath.Glob("./workspace/deployment/*.yml")
require.NoError(err)

args := []string{
"--coordinator-policy-hash=", // TODO(burgerdev): enable policy checking
"--coordinator", coordinator,
"--workspace-dir", "../../workspace",
"--workspace-dir", "./workspace",
}
args = append(args, resources...)

Expand Down Expand Up @@ -82,7 +82,7 @@ func TestOpenSSL(t *testing.T) {
require.NoError(err)
defer cancelPortForward()

workspaceDir, err := os.MkdirTemp("", "nunki-verify.*")
workspaceDir, err := os.MkdirTemp("", "contrast-verify.*")
require.NoError(err)

verify := cmd.NewVerifyCmd()
Expand Down

0 comments on commit 1849025

Please sign in to comment.