Fixing cmd/config/internal/commands/e2e/e2e_test.go

This commit is contained in:
Mattias Öhrn
2021-06-03 08:29:53 +02:00
parent 5e4fb4796e
commit e468d6b4d2

View File

@@ -87,8 +87,18 @@ metadata:
expectedFiles: func(d string) map[string]string { expectedFiles: func(d string) map[string]string {
return map[string]string{ return map[string]string{
"deployment.json": ` "deployment.json": `
{"apiVersion": "apps/v1", "kind": "Deployment", "metadata": {"name": "foo", annotations: { {
a-string-value: '', a-int-value: '0', a-bool-value: 'false'}}} "apiVersion": "apps/v1",
"kind": "Deployment",
"metadata": {
"annotations": {
"a-bool-value": "false",
"a-int-value": "0",
"a-string-value": ""
},
"name": "foo"
}
}
`, `,
} }
}, },