From 5ec86be7ddb35e3e7dad5714fe5dc08258d21d92 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sat, 25 Apr 2026 18:07:40 +0530 Subject: [PATCH] Tests: Use full import path in test collector --- tests/framework/collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/framework/collector.py b/tests/framework/collector.py index 2b33056..3fb8a60 100644 --- a/tests/framework/collector.py +++ b/tests/framework/collector.py @@ -2,7 +2,7 @@ from pathlib import Path import tomllib -from .bpf_test_case import BpfTestCase +from tests.framework.bpf_test_case import BpfTestCase TESTS_DIR = Path(__file__).parent.parent CONFIG_FILE = TESTS_DIR / "test_config.toml"