Skip to content

Commit

Permalink
fix onboarding tests (#69)
Browse files Browse the repository at this point in the history
* fix onboarding tests

* change method to start container
  • Loading branch information
hiltonlima authored Dec 7, 2023
1 parent 43812f2 commit ee18515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onboarding_payload_test_suite/onboarding_script_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async def chip_tool_manual_pairing_code_checksum_check(
self, pairing_code: str, checksum_index: str
) -> bool:
chip_tool = ChipTool()
await chip_tool.start_container(self.test_type)
await chip_tool.start_container()
assert chip_tool.is_running()
checksum_verify_command = "payload verhoeff-verify"
result = chip_tool.send_command(
Expand All @@ -73,7 +73,7 @@ async def chip_tool_manual_pairing_code_checksum_check(

async def chip_tool_parse_onboarding_code(self, code_payload: str) -> ParsedPayload:
chip_tool = ChipTool()
await chip_tool.start_container(self.test_type)
await chip_tool.start_container()
assert chip_tool.is_running()
qr_code_parse_command = "payload parse-setup-payload"
result = chip_tool.send_command(
Expand Down

0 comments on commit ee18515

Please sign in to comment.