From 0494cdca7d5d80fb0603d9f9fa7c3b24150bc0d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D1=80=D0=B5=D0=B4=D1=80=D0=B0=D0=B3=20=D0=9D=D0=B8?= =?UTF-8?q?=D0=BA=D0=BE=D0=BB=D0=B8=D1=9B?= Date: Thu, 21 Mar 2024 20:38:58 +0100 Subject: [PATCH] continue --- tests/test_configurations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_configurations.py b/tests/test_configurations.py index 6a816489d..9a3c1e2de 100644 --- a/tests/test_configurations.py +++ b/tests/test_configurations.py @@ -46,7 +46,7 @@ def test_with_single_config(self): hidden=False )) # view.settings().set("lsp_uri", "file:///foo/bar.txt") - self.assertEqual(1, 1) + self.assertEqual(list(manager.match_view(view)), [TEST_CONFIG]) def test_applies_project_settings(self): window = sublime.active_window() @@ -68,7 +68,7 @@ def test_applies_project_settings(self): scope="text.plain", hidden=False )) - view.settings().set("lsp_uri", "file:///foo/bar.txt") + # view.settings().set("lsp_uri", "file:///foo/bar.txt") configs = list(manager.match_view(view)) self.assertEqual(len(configs), 1) config = configs[0]