From de6a3f5f922770974e1a8ebde9720c5df7f2d658 Mon Sep 17 00:00:00 2001 From: nick Date: Thu, 2 Jul 2026 00:25:56 -0600 Subject: [PATCH] test: allow LilyGO cargo firmware without OLED setup page --- tests/test_http_api_contract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_http_api_contract.py b/tests/test_http_api_contract.py index 680f0a2..9b5283b 100644 --- a/tests/test_http_api_contract.py +++ b/tests/test_http_api_contract.py @@ -476,7 +476,7 @@ def test_cargo_oled_shows_setup_and_service_pages(): assert 'oledClear("Network")' in source assert 'oledClear("Alarms")' in source app_config = Path("firmware/esp32/overland-controller/app_config.h").read_text() - if 'HARDWARE_PROFILE "lilygo_t_relay_s3_6ch"' not in app_config: + if 'lilygo_t_relay_s3_6ch' not in app_config: assert "oledShowSetupPage();" in source assert "oledLoop();" in source