Skip to content

Commit 26e8cfb

Browse files
restyled-commitsdoublemis1
authored andcommitted
Restyled by autopep8
1 parent 5151ad3 commit 26e8cfb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/python_testing/TC_ACE_1_2.py

-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ def __init__(self, *args):
9090
self.subscriptions = []
9191
super().__init__(*args)
9292

93-
9493
def teardown_class(self):
9594
for subscription in self.subscriptions:
9695
subscription.Shutdown()

src/python_testing/matter_testing_support.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1506,6 +1506,7 @@ def generate_random_nodeid(excluded_nodeid: typing.Optional[typing.Set] = set())
15061506
return generate_random_nodeid(excluded_nodeid)
15071507
return nodeid
15081508

1509+
15091510
def async_test_body(body):
15101511
"""Decorator required to be applied whenever a `test_*` method is `async def`.
15111512
@@ -1710,7 +1711,7 @@ def run_tests_no_exit(test_class: MatterBaseTest, matter_test_config: MatterTest
17101711

17111712
try:
17121713
runner.run()
1713-
ok = runner.results.is_all_pass and ok
1714+
ok = runner.results.is_all_pass and ok
17141715
except TimeoutError:
17151716
ok = False
17161717
except signals.TestAbortAll:

0 commit comments

Comments
 (0)