summaryrefslogtreecommitdiff
path: root/pylint/test/functional/repeated_keyword.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/repeated_keyword.py')
-rw-r--r--pylint/test/functional/repeated_keyword.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/pylint/test/functional/repeated_keyword.py b/pylint/test/functional/repeated_keyword.py
deleted file mode 100644
index 786c53bab..000000000
--- a/pylint/test/functional/repeated_keyword.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""Check that a keyword is not repeated in a function call
-
-This is somehow related to redundant-keyword, but it's not the same.
-"""
-
-# pylint: disable=missing-docstring, invalid-name
-
-def test(a, b):
- return a, b
-
-test(1, 24)
-test(1, b=24, **{})
-test(1, b=24, **{'b': 24}) # [repeated-keyword]