Skip to content

Commit 3871d3a

Browse files
committed
Address review comments
1 parent 4f3c0ba commit 3871d3a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/python_testing/TC_DGWIFI_2_1.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ def is_valid_bssid(bssid) -> bool:
6464
return False
6565

6666
@staticmethod
67-
def is_valid_uint_value(value, max_size=64):
67+
def is_valid_uint_value(value, bit_count=64):
6868
"""
69-
Checks if 'value' is a non-negative integer fitting into 'max_size' bits.
70-
For example, max_size=32 => must fit within 0 <= value <= 0xFFFFFFFF
69+
Checks if 'value' is a non-negative integer fitting into 'bit_count' bits.
70+
For example, bit_count=32 => must fit within 0 <= value <= 0xFFFFFFFF
7171
"""
7272
if not isinstance(value, int):
7373
return False
7474
if value < 0:
7575
return False
76-
return value < 2**max_size
76+
return value < 2**bit_count
7777

7878
def assert_valid_bssid(self, value, field_name):
7979
"""Asserts that the value is a valid BSSID (MAC address), None, or NullValue."""
@@ -88,22 +88,22 @@ def assert_valid_bssid(self, value, field_name):
8888

8989
def assert_valid_uint64(self, value, field_name):
9090
"""Asserts that the value is a valid uint64 or None (if attribute can return NULL)."""
91-
asserts.assert_true(value is None or self.is_valid_uint_value(value, max_size=64),
91+
asserts.assert_true(value is None or self.is_valid_uint_value(value, bit_count=64),
9292
f"{field_name} should be a uint64 or NULL.")
9393

9494
def assert_valid_uint32(self, value, field_name):
9595
"""Asserts that the value is a valid uint32 or None (if attribute can return NULL)."""
96-
asserts.assert_true(value is None or self.is_valid_uint_value(value, max_size=32),
96+
asserts.assert_true(value is None or self.is_valid_uint_value(value, bit_count=32),
9797
f"{field_name} should be a uint32 or NULL.")
9898

9999
def assert_valid_uint16(self, value, field_name):
100100
"""Asserts that the value is a valid uint16 or None (if attribute can return NULL)."""
101-
asserts.assert_true(value is None or self.is_valid_uint_value(value, max_size=16),
101+
asserts.assert_true(value is None or self.is_valid_uint_value(value, bit_count=16),
102102
f"{field_name} should be a uint16 or NULL.")
103103

104104
def assert_valid_uint8(self, value, field_name):
105105
"""Asserts that the value is a valid uint16 or None (if attribute can return NULL)."""
106-
asserts.assert_true(value is None or self.is_valid_uint_value(value, max_size=8),
106+
asserts.assert_true(value is None or self.is_valid_uint_value(value, bit_count=8),
107107
f"{field_name} should be a uint8 or NULL.")
108108

109109
async def read_dgwifi_attribute_expect_success(self, endpoint, attribute):

0 commit comments

Comments
 (0)