summaryrefslogtreecommitdiff
path: root/tests/functional/t/too/too_many_arguments.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/t/too/too_many_arguments.py')
-rw-r--r--tests/functional/t/too/too_many_arguments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/t/too/too_many_arguments.py b/tests/functional/t/too/too_many_arguments.py
index 8d26902af..f4a668f53 100644
--- a/tests/functional/t/too/too_many_arguments.py
+++ b/tests/functional/t/too/too_many_arguments.py
@@ -26,7 +26,7 @@ def root_function(first, second, third):
def func_call():
- """Test we don't emit a FP for https://github.com/PyCQA/pylint/issues/2588"""
+ """Test we don't emit a FP for https://github.com/pylint-dev/pylint/issues/2588"""
partial_func = partial(root_function, 1, 2, 3)
partial_func()
return root_function(1, 2, 3)