From c470dd0df08f78724607b0eeec0510a6eae485e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Andr=C3=A9s=20Marino=20Rojas?= <47573394+Marinovsky@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:15:48 -0500 Subject: [PATCH] Fix bug --- tests/components/config/test_lean_config_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/config/test_lean_config_manager.py b/tests/components/config/test_lean_config_manager.py index ee7dcd99..8cad8e00 100644 --- a/tests/components/config/test_lean_config_manager.py +++ b/tests/components/config/test_lean_config_manager.py @@ -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")