From e6b29964785d836361636cee5c6e70af59d5fda0 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 16 Aug 2024 01:00:26 -0700 Subject: [PATCH] test_fw_fingerprint.py: fix RAM HD test --- selfdrive/car/tests/test_fw_fingerprint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/car/tests/test_fw_fingerprint.py b/selfdrive/car/tests/test_fw_fingerprint.py index 6391427bde..bd24054450 100644 --- a/selfdrive/car/tests/test_fw_fingerprint.py +++ b/selfdrive/car/tests/test_fw_fingerprint.py @@ -133,7 +133,7 @@ class TestFwFingerprint: elif CP.carName == "chrysler": # Some HD trucks have a combined TCM and ECM - if CP.carFingerprint.startswith("RAM HD"): + if CP.carFingerprint.startswith("RAM_HD"): for ecu in ecus.keys(): assert ecu[0] != Ecu.transmission, f"{car_model}: Blacklisted ecu: (Ecu.{ECU_NAME[ecu[0]]}, {hex(ecu[1])})"