diff --git a/tools/test_apps/system/panic/conftest.py b/tools/test_apps/system/panic/conftest.py index 9e28acb13c..e688deb9c7 100644 --- a/tools/test_apps/system/panic/conftest.py +++ b/tools/test_apps/system/panic/conftest.py @@ -13,11 +13,11 @@ import pexpect import pytest from _pytest.fixtures import FixtureRequest from _pytest.monkeypatch import MonkeyPatch +from panic_utils import NoGdbProcessError, attach_logger, quote_string, sha256, verify_valid_gdb_subprocess from pygdbmi.gdbcontroller import GdbController from pytest_embedded_idf.app import IdfApp from pytest_embedded_idf.dut import IdfDut from pytest_embedded_idf.serial import IdfSerial -from utils import NoGdbProcessError, attach_logger, quote_string, sha256, verify_valid_gdb_subprocess class PanicTestDut(IdfDut): diff --git a/tools/test_apps/system/panic/utils.py b/tools/test_apps/system/panic/panic_utils.py similarity index 100% rename from tools/test_apps/system/panic/utils.py rename to tools/test_apps/system/panic/panic_utils.py