From d661dbf218d283aab655dac8af5c5d7d63a53fd8 Mon Sep 17 00:00:00 2001 From: Trey Moen Date: Tue, 20 May 2025 19:52:45 -0700 Subject: [PATCH] why didnt u rename --- system/hardware/tici/tests/test_esim.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/hardware/tici/tests/test_esim.py b/system/hardware/tici/tests/test_esim.py index 51635f6372..96b1e4c748 100644 --- a/system/hardware/tici/tests/test_esim.py +++ b/system/hardware/tici/tests/test_esim.py @@ -1,7 +1,7 @@ import pytest from openpilot.system.hardware import TICI -from openpilot.system.hardware.tici.esim import LPA2, LPAProfileNotFoundError +from openpilot.system.hardware.tici.esim import LPA, LPAProfileNotFoundError # https://euicc-manual.osmocom.org/docs/rsp/known-test-profile # iccid is always the same for the given activation code @@ -11,7 +11,7 @@ TEST_ICCID = '8944476500001944011' TEST_NICKNAME = 'test_profile' def cleanup(): - lpa = LPA2() + lpa = LPA() try: lpa.delete_profile(TEST_ICCID) except LPAProfileNotFoundError: @@ -30,7 +30,7 @@ class TestEsim: cleanup() def test_provision_enable_disable(self): - lpa = LPA2() + lpa = LPA() current_active = lpa.get_active_profile() lpa.download_profile(TEST_ACTIVATION_CODE, TEST_NICKNAME)