We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf0180 commit bf67475Copy full SHA for bf67475
src/python_testing/TC_CNET_4_3.py
@@ -125,8 +125,7 @@ async def test_TC_CNET_4_3(self):
125
matching_networks_count = sum(map(lambda x: x.networkID == last_network_id, networks))
126
asserts.assert_equal(matching_networks_count, 1,
127
"Verify that LastNetworkID attribute matches the NetworkID value of one of the entries")
128
- asserts.assert_true(isinstance(last_network_id, bytes) and 1 <= len(last_network_id) <= 32,
129
- "Verify LastNetworkID attribute value will be of type octstr with a length range of 1 to 32")
+ asserts.assert_true(isinstance(last_network_id, bytes) and 1 <= len(last_network_id) <= 32)
130
131
self.step(8)
132
last_connect_error_value = await self.read_single_attribute_check_success(
0 commit comments