Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinovsky committed Oct 28, 2024
1 parent 2bc401f commit c470dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/components/config/test_lean_config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_get_known_lean_config_path_with_duplicated_paths() -> None:
assert manager.get_known_lean_config_paths() == [Path.cwd() / "custom-lean.json"]

def test_get_known_lean_config_path_normalizes_path_and_case() -> None:
custom_config_path = Path.cwd() / "//folder//..//custom-lean.json//"
custom_config_path = Path.cwd() / "/folder/../custom-lean.json/"
custom_config_path.touch()
custom_config_path.write_text("{}", encoding="utf-8")

Expand Down

0 comments on commit c470dd0

Please sign in to comment.