Skip to content

Commit a718fc4

Browse files
restyled-commitsj-ororke
authored andcommitted
Restyled by autopep8
1 parent 9ca36b1 commit a718fc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/python_testing/TC_MOD_1_2.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ async def test_TC_MOD_1_2(self):
6868

6969
mode_options = await self.read_single_attribute(dev_ctrl=self.th1, node_id=self.dut_node_id, endpoint=self.endpoint, attribute=attributes.SupportedModes)
7070
modes = [option.mode for option in mode_options]
71-
asserts.assert_equal(len(modes), len(set(modes)), "Duplicate values were found in Supported Modes modes, only expected to contain unique values for each mode")
72-
71+
asserts.assert_equal(len(modes), len(
72+
set(modes)), "Duplicate values were found in Supported Modes modes, only expected to contain unique values for each mode")
73+
7374
self.step(2)
7475
Current_Mode_ID = await self.read_single_attribute(dev_ctrl=self.th1, node_id=self.dut_node_id, endpoint=self.endpoint, attribute=attributes.CurrentMode)
7576
asserts.assert_in(Current_Mode_ID, modes, "Current Mode ID should have been in supported modes")

0 commit comments

Comments
 (0)