From e0a07ab5bf65d416967f624172644d7846616569 Mon Sep 17 00:00:00 2001 From: Taneli Hukkinen Date: Wed, 13 May 2020 20:41:25 +0200 Subject: Fix errors when a kwarg is named "col" (#35) --- tests/test_map.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests') diff --git a/tests/test_map.py b/tests/test_map.py index 5c4e1fb..37b5b65 100644 --- a/tests/test_map.py +++ b/tests/test_map.py @@ -1436,6 +1436,11 @@ class BaseMapTest: def test_map_is_subscriptable(self): self.assertIs(self.Map[int, str], self.Map) + def test_kwarg_named_col(self): + self.assertEqual(dict(self.Map(col=0)), {"col": 0}) + self.assertEqual(dict(self.Map(a=0, col=1)), {"a": 0, "col": 1}) + self.assertEqual(dict(self.Map({"a": 0}, col=1)), {"a": 0, "col": 1}) + class PyMapTest(BaseMapTest, unittest.TestCase): -- cgit v1.2.3