From a4954e37cf6df8695cefecdd49f5b3b1b46f4783 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Wed, 9 Oct 2024 20:35:59 -0700 Subject: [PATCH] Fix bug --- tests/python/test_misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/test_misc.py b/tests/python/test_misc.py index 873e8d3..75f4f0f 100644 --- a/tests/python/test_misc.py +++ b/tests/python/test_misc.py @@ -33,4 +33,4 @@ def test_is_special_class(cls, expected): ], ) def test_is_keyword_class(cls, expected): - assert_that(lsp.is_keyword_class(lsp.CancelNotification), is_(expected)) + assert_that(lsp.is_keyword_class(cls), is_(expected))