ui: Go back to expecting falsey values during config env tests (#8710)

pull/8735/head
John Cowen 2020-09-23 09:19:04 +01:00 committed by GitHub
parent b87e6443cf
commit e4507ae11e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ test(
{
environment: 'production',
CONSUL_BINARY_TYPE: 'oss',
CONSUL_ACLS_ENABLED: '{{ if .ACLsEnabled }}{{.ACLsEnabled}}{{ else }}false{{ end }}',
CONSUL_SSO_ENABLED: '{{ if .SSOEnabled }}{{.SSOEnabled}}{{ else }}false{{ end }}',
CONSUL_NSPACES_ENABLED: '{{ if .NamespacesEnabled }}{{.NamespacesEnabled}}{{ else }}false{{ end }}',
CONSUL_ACLS_ENABLED: false,
CONSUL_SSO_ENABLED: false,
CONSUL_NSPACES_ENABLED: false,
},
{
environment: 'test',