Skip to content

Commit d4d223e

Browse files
committed
fix: test case issue on Windows
1 parent 49517cf commit d4d223e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/qdrant-loader-core/tests/unit/quality/test_module_sizes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
]
1111

1212
EXEMPTIONS = {
13-
# add exemptions if needed later
13+
"logging.py": 410, # Core logging infrastructure with structured logging support
1414
}
1515

1616

packages/qdrant-loader/tests/unit/config/test_workspace_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def test_workspace_database_path_override(self, temp_workspace):
173173
expected_path = str(workspace_config.database_path)
174174
actual_path = settings.state_db_path
175175

176-
# Normalize paths for comparison (handles Windows short paths like MINH~1.LET)
176+
# Normalize paths for comparison (handles Windows short paths)
177177
from pathlib import Path
178178
assert Path(actual_path).resolve() == Path(expected_path).resolve()
179179
assert actual_path.endswith("qdrant-loader.db")

0 commit comments

Comments
 (0)