From ed7d7164629cf699d660a7697a312622b85a65b3 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 24 Nov 2021 16:28:13 -0800 Subject: [PATCH] test_l3_WAN_LAN: static method was not static Signed-off-by: Matthew Stidham --- py-scripts/test_l3_WAN_LAN.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py-scripts/test_l3_WAN_LAN.py b/py-scripts/test_l3_WAN_LAN.py index 0e22ea85..424897f5 100755 --- a/py-scripts/test_l3_WAN_LAN.py +++ b/py-scripts/test_l3_WAN_LAN.py @@ -88,7 +88,8 @@ class VRTest(LFCliBase): cx_rx_map[item] = value_rx return cx_rx_map - def __compare_vals(self, old_list, new_list): + @staticmethod + def __compare_vals(old_list, new_list): passes = 0 expected_passes = 0 if len(old_list) == len(new_list):