From 6a9ee4cb00b8d02e395ed5f6cdcb4210a80865fc Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Tue, 16 Nov 2021 11:02:09 -0800 Subject: [PATCH] test_l3_longevity_beta: Remove invalid comparisons Signed-off-by: Matthew Stidham --- py-scripts/sandbox/test_l3_longevity_beta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/sandbox/test_l3_longevity_beta.py b/py-scripts/sandbox/test_l3_longevity_beta.py index 0bfa08a2..ded14a1f 100644 --- a/py-scripts/sandbox/test_l3_longevity_beta.py +++ b/py-scripts/sandbox/test_l3_longevity_beta.py @@ -423,7 +423,7 @@ class L3VariableTime(Realm): def reset_port_check(self): for station_profile in self.station_profiles: if station_profile.reset_port_extra_data['reset_port_enable']: - if station_profile.reset_port_extra_data['reset_port_timer_started'] is False: + if not station_profile.reset_port_extra_data['reset_port_timer_started']: print("reset_port_timer_started {}".format(station_profile.reset_port_extra_data['reset_port_timer_started'])) print("reset_port_time_min: {}".format(station_profile.reset_port_extra_data['reset_port_time_min'])) print("reset_port_time_max: {}".format(station_profile.reset_port_extra_data['reset_port_time_max']))