test: update test expectations to match fixed error messages

This commit is contained in:
Test User
2025-06-27 12:34:55 -07:00
parent 02ffb41cd6
commit e5ea28d897
3 changed files with 7 additions and 7 deletions

View File

@@ -467,7 +467,7 @@ func TestStep_Validate(t *testing.T) {
},
},
},
expErr: "\"run\" step \"shellArgs\" option must be a string or a list of strings, found [42 42]\n",
expErr: "\"run\" step \"shellArgs\" option must be a string or a list of strings, found [42 42]",
},
{
description: "run step with shellArgs contain not strings",
@@ -481,7 +481,7 @@ func TestStep_Validate(t *testing.T) {
},
},
},
expErr: "\"run\" step \"shellArgs\" option must contain only strings, found 42\n",
expErr: "\"run\" step \"shellArgs\" option must contain only strings, found 42",
},
{
// For atlantis.yaml v2, this wouldn't parse, but now there should

View File

@@ -45,7 +45,7 @@ func TestMultiEnvStepRunner_Run(t *testing.T) {
{
Command: `echo 'TF_VAR_REPODEFINEDVARIABLE_NO_VALUE'`,
Output: valid.PostProcessRunOutputShow,
ExpErr: "Invalid environment variable definition: TF_VAR_REPODEFINEDVARIABLE_NO_VALUE",
ExpErr: "invalid environment variable definition: TF_VAR_REPODEFINEDVARIABLE_NO_VALUE",
ExpEnv: map[string]string{},
},
{

View File

@@ -1060,7 +1060,7 @@ func TestGithubClient_MergePullCorrectMethod(t *testing.T) {
allowSquash: true,
mergeMethodOption: "merge",
expMethod: "",
expErr: "Merge method 'merge' is not allowed by the repository Pull Request settings",
expErr: "merge method 'merge' is not allowed by the repository Pull Request settings",
},
"merge with rebase: overridden by command: rebase not allowed": {
allowMerge: true,
@@ -1068,7 +1068,7 @@ func TestGithubClient_MergePullCorrectMethod(t *testing.T) {
allowSquash: true,
mergeMethodOption: "rebase",
expMethod: "",
expErr: "Merge method 'rebase' is not allowed by the repository Pull Request settings",
expErr: "merge method 'rebase' is not allowed by the repository Pull Request settings",
},
"merge with squash: overridden by command: squash not allowed": {
allowMerge: true,
@@ -1076,7 +1076,7 @@ func TestGithubClient_MergePullCorrectMethod(t *testing.T) {
allowSquash: false,
mergeMethodOption: "squash",
expMethod: "",
expErr: "Merge method 'squash' is not allowed by the repository Pull Request settings",
expErr: "merge method 'squash' is not allowed by the repository Pull Request settings",
},
"merge with unknown: overridden by command: unknown doesn't exist": {
allowMerge: true,
@@ -1084,7 +1084,7 @@ func TestGithubClient_MergePullCorrectMethod(t *testing.T) {
allowSquash: true,
mergeMethodOption: "unknown",
expMethod: "",
expErr: "Merge method 'unknown' is unknown. Specify one of the valid values: 'merge, rebase, squash'",
expErr: "merge method 'unknown' is unknown. Specify one of the valid values: 'merge, rebase, squash'",
},
}