summaryrefslogtreecommitdiff
path: root/src/tests/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test.py')
-rw-r--r--src/tests/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/test.py b/src/tests/test.py
index b01bc10..5bd34e8 100644
--- a/src/tests/test.py
+++ b/src/tests/test.py
@@ -89,7 +89,8 @@ class ExtraTestCase(unittest.TestCase):
def func(**kw):
return kw
- self.assertEqual(func(f='a'), {'f': 'a'})
+ # there is no confusion when passing args as a keyword argument
+ self.assertEqual(func(args='a'), {'args': 'a'})
# ################### test dispatch_on ############################# #
# adapted from test_functools in Python 3.5