From a7af2e8370e876dfc25560b59c749d874f78c8bb Mon Sep 17 00:00:00 2001 From: Justin Newberry Date: Fri, 1 Dec 2023 14:51:21 -0800 Subject: [PATCH] tolerance can also go down --- selfdrive/car/tests/test_fw_fingerprint.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/selfdrive/car/tests/test_fw_fingerprint.py b/selfdrive/car/tests/test_fw_fingerprint.py index 42e2ed5e88..5563490f3c 100755 --- a/selfdrive/car/tests/test_fw_fingerprint.py +++ b/selfdrive/car/tests/test_fw_fingerprint.py @@ -177,7 +177,7 @@ class TestFwFingerprint(unittest.TestCase): class TestFwFingerprintTiming(unittest.TestCase): N: int = 5 - TOL: float = 0.12 + TOL: float = 0.1 @staticmethod def _run_thread(thread: threading.Thread) -> float: @@ -244,11 +244,11 @@ class TestFwFingerprintTiming(unittest.TestCase): 'body': 0.1, 'chrysler': 0.3, 'ford': 0.2, - 'honda': 0.5, - 'hyundai': 0.7, + 'honda': 0.4, + 'hyundai': 0.6, 'mazda': 0.2, 'nissan': 0.4, - 'subaru': 0.5, + 'subaru': 0.4, 'tesla': 0.2, 'toyota': 1.6, 'volkswagen': 0.2,