Skip to content

Commit 1380592

Browse files
Fix runner_utils path in Arm backend (#8176)
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
1 parent 6e0cb06 commit 1380592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backends/arm/test/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515

1616
import pytest
1717
from executorch.backends.arm.arm_backend import ArmCompileSpecBuilder
18-
from executorch.backends.arm.tosa_specification import TosaSpecification
19-
from executorch.exir.backend.compile_spec_schema import CompileSpec
20-
from runner_utils import (
18+
from executorch.backends.arm.test.runner_utils import (
2119
arm_executor_runner_exists,
2220
corstone300_installed,
2321
corstone320_installed,
2422
)
23+
from executorch.backends.arm.tosa_specification import TosaSpecification
24+
from executorch.exir.backend.compile_spec_schema import CompileSpec
2525

2626

2727
def get_time_formatted_path(path: str, log_prefix: str) -> str:

0 commit comments

Comments
 (0)