From b8c9340ff4cf6670e6243371f88c3cacb3aa38b4 Mon Sep 17 00:00:00 2001 From: Tatu Aalto Date: Thu, 16 Nov 2023 20:49:56 +0200 Subject: [PATCH] Fix utest --- utest/test_get_keyword_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utest/test_get_keyword_types.py b/utest/test_get_keyword_types.py index 7e407f3..92029a2 100644 --- a/utest/test_get_keyword_types.py +++ b/utest/test_get_keyword_types.py @@ -214,5 +214,5 @@ def test_kw_with_many_named_arguments_with_default(lib_types: DynamicTypesAnnota def test_lib_annotations(lib_annotation: lib_future_annotation): types = lib_annotation.get_keyword_types("future_annotations") - expected = {"arg1": Location} + expected = {"arg": Location} assert types == expected