Skip to content

Commit

Permalink
fix: e2e 24 - can we assert that this error exists or do we have to i…
Browse files Browse the repository at this point in the history
…gnore it

Signed-off-by: Kit Patella <[email protected]>
  • Loading branch information
mkcp committed Sep 25, 2024
1 parent ac3db17 commit 3b274f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/e2e/24_variables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ func TestVariables(t *testing.T) {

// Test that not specifying a prompted variable results in an error
_, stdErr, err = e2e.Zarf(t, "package", "deploy", path, "--confirm")
require.NoError(t, err)
expectedOutString = "variable 'SITE_NAME' must be '--set' when using the '--confirm' flag"
require.Error(t, err)
require.Contains(t, stdErr, "", expectedOutString)

// Test that specifying an invalid variable value results in an error
Expand Down

0 comments on commit 3b274f7

Please sign in to comment.