mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-05 08:15:58 +08:00
12 lines
306 B
Python
12 lines
306 B
Python
from openpilot.starpilot.common.safe_mode import SAFE_MODE_MANAGED_KEYS
|
|
|
|
|
|
def test_safe_mode_manages_lane_centering_settings():
|
|
assert {
|
|
"CameraOffset",
|
|
"LaneCentering",
|
|
"LaneCenteringPauseOnSignal",
|
|
"LaneCenteringE2EAuthority",
|
|
"LaneCenterOffset",
|
|
} <= set(SAFE_MODE_MANAGED_KEYS)
|