test: fix test_IdeationConfigManager_default_values path comparison

Use string comparison instead of resolve() for path comparison.
On Windows, /tmp/test resolves to D:/tmp/test, and on macOS /tmp/test
resolves to /private/tmp/test, but the implementation stores paths
as-is without resolving.
This commit is contained in:
StillKnotKnown
2026-02-09 12:31:37 +02:00
parent 9b637529b9
commit ba9e2e8a4b
+2 -2
View File
@@ -64,8 +64,8 @@ def test_IdeationConfigManager_default_values(mock_init):
config = IdeationConfigManager(project_dir=project_dir)
# Use resolve() for cross-platform compatibility (macOS /tmp -> /private/tmp)
assert config.project_dir == project_dir.resolve()
# Compare paths without resolve() since the implementation stores paths as-is
assert str(config.project_dir) == str(project_dir)
assert config.model == "sonnet"
assert config.thinking_level == "medium"
assert config.refresh is False