From 651be1a5d4b8ca7f3e655887d03e538978450ea5 Mon Sep 17 00:00:00 2001 From: Adrian Lundell Date: Tue, 4 Feb 2025 11:42:54 +0100 Subject: [PATCH] Fix runner_utils path The import accidently didn't include the full path which caused issues finding the module in some cases. Change-Id: Icee264e4ccc28a78dc8af275b96a91b11b7d85c9 --- backends/arm/test/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backends/arm/test/common.py b/backends/arm/test/common.py index 4d4921d56a5..091b2d5f26b 100644 --- a/backends/arm/test/common.py +++ b/backends/arm/test/common.py @@ -15,13 +15,13 @@ import pytest from executorch.backends.arm.arm_backend import ArmCompileSpecBuilder -from executorch.backends.arm.tosa_specification import TosaSpecification -from executorch.exir.backend.compile_spec_schema import CompileSpec -from runner_utils import ( +from executorch.backends.arm.test.runner_utils import ( arm_executor_runner_exists, corstone300_installed, corstone320_installed, ) +from executorch.backends.arm.tosa_specification import TosaSpecification +from executorch.exir.backend.compile_spec_schema import CompileSpec def get_time_formatted_path(path: str, log_prefix: str) -> str: