Skip to content

Commit 2fb7c52

Browse files
restyled-commitscecille
authored andcommitted
Restyled by autopep8
1 parent 8a872ee commit 2fb7c52

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/python_testing/TC_SWTCH.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ async def test_TC_SWTCH_2_4(self):
306306
self._await_sequence_of_events(event_queue=event_listener.event_queue, endpoint_id=endpoint_id,
307307
sequence=expected_events, timeout_sec=post_prompt_settle_delay_seconds)
308308

309-
310309
def _received_event(self, event_listener: EventChangeCallback, target_event: ClusterObjects.ClusterEvent, timeout_s: int) -> bool:
311310
"""
312311
Returns true if this event was received, false otherwise
@@ -326,16 +325,19 @@ def _received_event(self, event_listener: EventChangeCallback, target_event: Clu
326325

327326
def pics_TC_SWTCH_2_3(self):
328327
return ['SWTCH.S.F01']
328+
329329
def steps_TC_SWTCH_2_3(self):
330330
return [TestStep(1, test_plan_support.commission_if_required(), "", is_commissioning=True),
331331
TestStep(2, "Set up subscription to all events of Switch cluster on the endpoint"),
332332
TestStep(3, "Operator does not operate switch on the DUT"),
333333
TestStep(4, "TH reads the CurrentPosition attribute from the DUT", "Verify that the value is 0"),
334-
TestStep(5, "Operator operates switch (keep it pressed)", "Verify that the TH receives InitialPress event with NewPosition set to 1 on the DUT"),
334+
TestStep(5, "Operator operates switch (keep it pressed)",
335+
"Verify that the TH receives InitialPress event with NewPosition set to 1 on the DUT"),
335336
TestStep(6, "TH reads the CurrentPosition attribute from the DUT", "Verify that the value is 1"),
336337
TestStep(7, "Operator releases switch on the DUT"),
337338
TestStep("8a", "If the DUT implements the MSR feature, verify that the TH receives ShortRelease event with NewPosition set to 0 on the DUT", "Event received"),
338-
TestStep("8b", "If the DUT implements the AS feature, verify that the TH does not receive ShortRelease event on the DUT", "No event received"),
339+
TestStep(
340+
"8b", "If the DUT implements the AS feature, verify that the TH does not receive ShortRelease event on the DUT", "No event received"),
339341
TestStep(9, "TH reads the CurrentPosition attribute from the DUT", "Verify that the value is 0"),
340342
]
341343

@@ -377,10 +379,10 @@ async def test_TC_SWTCH_2_3(self):
377379
self.step(7)
378380
self._ask_for_release()
379381

380-
381382
self.step("8a")
382383
if has_msr_feature:
383-
asserts.assert_true(self._received_event(event_listener, cluster.Events.ShortRelease, 10), "Did not receive short release")
384+
asserts.assert_true(self._received_event(event_listener, cluster.Events.ShortRelease, 10),
385+
"Did not receive short release")
384386
else:
385387
self.mark_current_step_skipped()
386388

0 commit comments

Comments
 (0)