mirror of
https://github.com/espressif/openthread.git
synced 2026-09-12 12:10:07 +00:00
[tests] fix inconsistent casing in Thread Nodes multicast address constants (#12484)
Renames LINK_LOCAL_All_THREAD_NODES_MULTICAST_ADDRESS to LINK_LOCAL_ALL_THREAD_NODES_MULTICAST_ADDRESS and REALM_LOCAL_All_THREAD_NODES_MULTICAST_ADDRESS to REALM_LOCAL_ALL_THREAD_NODES_MULTICAST_ADDRESS across the test scripts to ensure consistent ALL_CAPS_WITH_UNDERSCORES casing for constants, adhering to PEP 8 and project conventions.
This commit is contained in:
@@ -33,8 +33,8 @@ from pktverify.bytes import Bytes
|
||||
DOMAIN_PREFIX = Bytes('fd00:7d03:7d03:7d03')
|
||||
BACKBONE_IPV6_PREFIX = Bytes('91')
|
||||
|
||||
LINK_LOCAL_All_THREAD_NODES_MULTICAST_ADDRESS = Ipv6Addr('ff32:40:fd00:db8::1')
|
||||
REALM_LOCAL_All_THREAD_NODES_MULTICAST_ADDRESS = Ipv6Addr('ff33:40:fd00:db8::1')
|
||||
LINK_LOCAL_ALL_THREAD_NODES_MULTICAST_ADDRESS = Ipv6Addr('ff32:40:fd00:db8::1')
|
||||
REALM_LOCAL_ALL_THREAD_NODES_MULTICAST_ADDRESS = Ipv6Addr('ff33:40:fd00:db8::1')
|
||||
REALM_LOCAL_ALL_NODES_ADDRESS = Ipv6Addr('ff03::1')
|
||||
REALM_LOCAL_ALL_ROUTERS_ADDRESS = Ipv6Addr('ff03::2')
|
||||
LINK_LOCAL_ALL_NODES_MULTICAST_ADDRESS = Ipv6Addr('ff02::1')
|
||||
|
||||
Reference in New Issue
Block a user