Skip to content

Commit d0c663d

Browse files
committed
fix step 7
1 parent dfe1ebe commit d0c663d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/python_testing/TC_CNET_4_1.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ async def test_TC_CNET_4_1(self):
125125
matching_networks_count = sum(map(lambda x: x.networkID == last_network_id, networks))
126126
asserts.assert_equal(matching_networks_count, 1,
127127
"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)
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")
129130

130131
self.step(8)
131132
last_connect_error_value = await self.read_single_attribute_check_success(

0 commit comments

Comments
 (0)