Skip to content

Commit

Permalink
Fix OIDC and SAML test configs syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
azasypkin committed Jul 6, 2020
1 parent d83198e commit eddc712
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/test/oidc_api_integration/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
serverArgs: [
...xPackAPITestsConfig.get('kbnTestServer.serverArgs'),
`--plugin-path=${plugin}`,
'--xpack.security.authc.providers=["oidc", "basic"]',
`--xpack.security.authc.providers=${JSON.stringify(['oidc', 'basic'])}`,
'--xpack.security.authc.oidc.realm="oidc1"',
],
},
Expand Down
1 change: 0 additions & 1 deletion x-pack/test/security_functional/saml.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
'--xpack.security.authc.providers.saml.saml1.order=0',
'--xpack.security.authc.providers.saml.saml1.realm=saml1',
'--xpack.security.authc.providers.basic.basic1.order=1',
`--config=/projects/elastic/master/kibana/config/kibana.dev.test.yml`,
],
},
uiSettings: {
Expand Down

0 comments on commit eddc712

Please sign in to comment.