mirror of https://github.com/grpc/grpc-dart.git
useTestCA argument checking fix (#495)
This commit is contained in:
parent
6d9bb1057a
commit
c982597fae
|
|
@ -100,7 +100,7 @@ Future<int> main(List<String> args) async {
|
|||
testCase: arguments[_testCaseArgument] ??
|
||||
(throw 'Must specify --$_testCaseArgument'),
|
||||
useTls: arguments[_useTLSArgument] != 'false',
|
||||
useTestCA: arguments[_useTestCAArgument],
|
||||
useTestCA: arguments[_useTestCAArgument] != 'false',
|
||||
defaultServiceAccount: arguments[_defaultServiceAccountArgument],
|
||||
oauthScope: arguments[_oauthScopeArgument],
|
||||
serviceAccountKeyFile: arguments[_serviceAccountKeyFileArgument]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue