Skip to content

Commit

Permalink
Rolling back the test stop unnecessary exception parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-amjr committed Sep 20, 2024
1 parent af99b76 commit 1ea10ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/py_matter_yamltests/matter_yamltests/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ async def _run(self, parser: TestParser, config: TestRunnerConfig):
if config.options.delay_in_ms:
await asyncio.sleep(config.options.delay_in_ms / 1000)

hooks.test_stop(exception=None, duration=round(test_duration))
hooks.test_stop(round(test_duration))

except Exception as exception:
status = exception
Expand Down

0 comments on commit 1ea10ed

Please sign in to comment.