summaryrefslogtreecommitdiff
path: root/tests/functional/n/no/no_member.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/n/no/no_member.py')
-rw-r--r--tests/functional/n/no/no_member.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/n/no/no_member.py b/tests/functional/n/no/no_member.py
index 1db70cde5..a36fc359e 100644
--- a/tests/functional/n/no/no_member.py
+++ b/tests/functional/n/no/no_member.py
@@ -1,7 +1,7 @@
# pylint: disable=missing-docstring, unused-argument, wrong-import-position, invalid-name
from pathlib import Path
-# Regression test for https://github.com/PyCQA/pylint/issues/400
+# Regression test for https://github.com/pylint-dev/pylint/issues/400
class TestListener:
def __init__(self):
self._latest = None
@@ -19,7 +19,7 @@ listener = TestListener()
broker = listener.wait(3).get_domain() # No error here
-# Regression test for https://github.com/PyCQA/pylint/issues/4377
+# Regression test for https://github.com/pylint-dev/pylint/issues/4377
from urllib import parse
url = 'http://www.google.com'
@@ -31,7 +31,7 @@ new_parsed_url = parse.ParseResult._replace(parsed_url, query=sorted_query)
new_url = new_parsed_url.geturl() # No error here
-# Regression test for https://github.com/PyCQA/pylint/issues/3803
+# Regression test for https://github.com/pylint-dev/pylint/issues/3803
# pylint: disable=too-few-public-methods
class Base:
label: str
@@ -44,5 +44,5 @@ class Derived(Base):
print(Derived.label)
-# Regression test for https://github.com/PyCQA/pylint/issues/5832
+# Regression test for https://github.com/pylint-dev/pylint/issues/5832
starter_path = Path(__file__).parents[3].resolve()