Skip to content

Commit a78dd69

Browse files
committed
fix basic comp
1 parent 10714ef commit a78dd69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python_testing/basic_composition_support.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ def ConvertValue(value) -> Any:
9999

100100
class BasicCompositionTests:
101101
async def connect_over_pase(self, dev_ctrl):
102-
asserts.assert_true(self.matter_test_config.qr_code_content is None or self.matter_test_config.manual_code is None,
102+
asserts.assert_true(self.matter_test_config.qr_code_content == [] or self.matter_test_config.manual_code == [],
103103
"Cannot have both QR and manual code specified")
104-
setupCode = self.matter_test_config.qr_code_content if self.matter_test_config.qr_code_content is not None else self.matter_test_config.manual_code
104+
setupCode = self.matter_test_config.qr_code_content + self.matter_test_config.manual_code
105105
asserts.assert_equal(len(setupCode), 1, "Require one of either --qr-code or --manual-code.")
106106
await dev_ctrl.FindOrEstablishPASESession(setupCode[0], self.dut_node_id)
107107

0 commit comments

Comments
 (0)