summaryrefslogtreecommitdiff
path: root/tests/functional/s/super
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/s/super')
-rw-r--r--tests/functional/s/super/super_checks.py6
-rw-r--r--tests/functional/s/super/super_init_not_called.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/functional/s/super/super_checks.py b/tests/functional/s/super/super_checks.py
index 050fd3c81..2c8515b12 100644
--- a/tests/functional/s/super/super_checks.py
+++ b/tests/functional/s/super/super_checks.py
@@ -99,7 +99,7 @@ class InvalidSuperChecks(BaseClass):
-# Regression for PyCQA/pylint/issues/773
+# Regression for pylint-dev/pylint/issues/773
import subprocess
# The problem was related to astroid not filtering statements
@@ -125,7 +125,7 @@ class SuperWithSelfClass:
super(self.__class__, self).__init__() # [bad-super-call]
-# Reported in https://github.com/PyCQA/pylint/issues/2903
+# Reported in https://github.com/pylint-dev/pylint/issues/2903
class Parent:
def method(self):
print()
@@ -149,7 +149,7 @@ class GrandChild(Child):
super(Niece, self).method() # [bad-super-call]
-# Reported in https://github.com/PyCQA/pylint/issues/4922
+# Reported in https://github.com/pylint-dev/pylint/issues/4922
class AlabamaCousin(Child, Niece):
def method(self):
print("AlabamaCousin")
diff --git a/tests/functional/s/super/super_init_not_called.py b/tests/functional/s/super/super_init_not_called.py
index f0bfe0329..03bfd3b43 100644
--- a/tests/functional/s/super/super_init_not_called.py
+++ b/tests/functional/s/super/super_init_not_called.py
@@ -52,14 +52,14 @@ class ChildThree(ParentWithoutInit):
# Regression test as reported in
-# https://github.com/PyCQA/pylint/issues/6027
+# https://github.com/pylint-dev/pylint/issues/6027
class MyUnion(ctypes.Union):
def __init__(self):
pass
# Should not be called on abstract __init__ methods
-# https://github.com/PyCQA/pylint/issues/3975
+# https://github.com/pylint-dev/pylint/issues/3975
class Base:
def __init__(self, param: int, param_two: str) -> None:
raise NotImplementedError()