This commit is contained in:
Shreyas Goenka 2024-09-04 15:57:04 +02:00
parent 48af9d1c57
commit 176bb4b382
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 3 additions and 3 deletions

View File

@ -139,12 +139,12 @@ func TestRootMergeTargetOverridesWithVariables(t *testing.T) {
}, },
Targets: map[string]*Target{ Targets: map[string]*Target{
"development": { "development": {
Variables: map[string]*variable.Variable{ Variables: map[string]any{
"foo": { "foo": variable.Variable{
Default: "bar", Default: "bar",
Description: "wrong", Description: "wrong",
}, },
"complex": { "complex": variable.Variable{
Type: "wrong", Type: "wrong",
Description: "wrong", Description: "wrong",
Default: map[string]interface{}{ Default: map[string]interface{}{