Skip to content

Commit bf67475

Browse files
committed
Revert "fix step 7"
This reverts commit 59f663a.
1 parent 2bf0180 commit bf67475

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/python_testing/TC_CNET_4_3.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ async def test_TC_CNET_4_3(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,
129-
"Verify LastNetworkID attribute value will be of type octstr with a length range of 1 to 32")
128+
asserts.assert_true(isinstance(last_network_id, bytes) and 1 <= len(last_network_id) <= 32)
130129

131130
self.step(8)
132131
last_connect_error_value = await self.read_single_attribute_check_success(

0 commit comments

Comments
 (0)