useTestCA argument checking fix (#495)

This commit is contained in:
Alexander Bosak 2021-07-01 19:06:25 +07:00 committed by GitHub
parent 6d9bb1057a
commit c982597fae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ Future<int> main(List<String> args) async {
testCase: arguments[_testCaseArgument] ?? testCase: arguments[_testCaseArgument] ??
(throw 'Must specify --$_testCaseArgument'), (throw 'Must specify --$_testCaseArgument'),
useTls: arguments[_useTLSArgument] != 'false', useTls: arguments[_useTLSArgument] != 'false',
useTestCA: arguments[_useTestCAArgument], useTestCA: arguments[_useTestCAArgument] != 'false',
defaultServiceAccount: arguments[_defaultServiceAccountArgument], defaultServiceAccount: arguments[_defaultServiceAccountArgument],
oauthScope: arguments[_oauthScopeArgument], oauthScope: arguments[_oauthScopeArgument],
serviceAccountKeyFile: arguments[_serviceAccountKeyFileArgument]); serviceAccountKeyFile: arguments[_serviceAccountKeyFileArgument]);