From 03bb833b718f206fda5dd7d2716a33f55bd453a7 Mon Sep 17 00:00:00 2001 From: Ashleigh Walker Date: Mon, 31 Aug 2026 13:17:49 -0500 Subject: [PATCH] fix(tests): resolve cross-platform path separator on Windows in test_builder_resolution --- tests/external/common/validation/test_builder_resolution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/external/common/validation/test_builder_resolution.py b/tests/external/common/validation/test_builder_resolution.py index 3a2ca95..a29c885 100644 --- a/tests/external/common/validation/test_builder_resolution.py +++ b/tests/external/common/validation/test_builder_resolution.py @@ -57,7 +57,7 @@ def test_builder_resolution_integrity(repo_root: pathlib.Path): local_builder_path = module_dir / "builder.py" if local_builder_path.exists(): rel_path = module_dir.relative_to(src_dir) - local_module_path = f"{str(rel_path).replace('/', '.')}.builder" + local_module_path = f"{rel_path.as_posix().replace('/', '.')}.builder" try: # Dynamically import the local builder module module = importlib.import_module(local_module_path)