We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bab72f commit aea3bbeCopy full SHA for aea3bbe
src/python_testing/matter_testing_support.py
@@ -1246,7 +1246,7 @@ def convert_args_to_matter_config(args: argparse.Namespace) -> MatterTestConfig:
1246
config.pics = {} if args.PICS is None else read_pics_from_file(args.PICS)
1247
config.tests = [] if args.tests is None else args.tests
1248
config.timeout = args.timeout # This can be none, we pull the default from the test if it's unspecified
1249
- config.endpoint = 0 if args.endpoint is None else args.endpoint
+ config.endpoint = args.endpoint # This can be None, the get_endpoint function allows the tests to supply a default
1250
1251
config.controller_node_id = args.controller_node_id
1252
config.trace_to = args.trace_to
0 commit comments