From 31a5a3b3c0bd154e4b76c850710364261de3ece3 Mon Sep 17 00:00:00 2001 From: discountchubbs Date: Sun, 26 Oct 2025 11:06:00 -0700 Subject: [PATCH] assertion comparison operators --- sunnypilot/navd/tests/test_navigationd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sunnypilot/navd/tests/test_navigationd.py b/sunnypilot/navd/tests/test_navigationd.py index ab84a64f63..7fda2ce6f9 100644 --- a/sunnypilot/navd/tests/test_navigationd.py +++ b/sunnypilot/navd/tests/test_navigationd.py @@ -66,5 +66,5 @@ class TestNavigationd: nav.route = {'580 Winchester dr, oxnard, CA': True} nav.cancel_route_counter = 30 nav._update_params() - assert nav.route == None - assert nav.destination == None + assert nav.route is None + assert nav.destination is None