summaryrefslogtreecommitdiff
path: root/tests/test_regrtest.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-29 13:54:24 +0200
committerDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-03-29 19:19:40 +0200
commit6714f15531c78d98860d8b17123d4308205aecc6 (patch)
tree701adef92867cc5f5d974d64446b72c3ab7363b4 /tests/test_regrtest.py
parent7d76924a8ef0053be6484fe12e8c6c23d7145ab5 (diff)
downloadastroid-git-6714f15531c78d98860d8b17123d4308205aecc6.tar.gz
[PyCQA migration] Upgrade links to the repositories in code and doc
Diffstat (limited to 'tests/test_regrtest.py')
-rw-r--r--tests/test_regrtest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_regrtest.py b/tests/test_regrtest.py
index 46db87ea..b135081a 100644
--- a/tests/test_regrtest.py
+++ b/tests/test_regrtest.py
@@ -1,6 +1,6 @@
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
-# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
-# Copyright (c) https://github.com/PyCQA/astroid/blob/main/CONTRIBUTORS.txt
+# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
+# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt
import sys
import textwrap
@@ -375,7 +375,7 @@ def test_crash_in_dunder_inference_prevented() -> None:
def test_regression_crash_classmethod() -> None:
"""Regression test for a crash reported in
- https://github.com/PyCQA/pylint/issues/4982.
+ https://github.com/pylint-dev/pylint/issues/4982.
"""
code = """
class Base:
@@ -397,7 +397,7 @@ def test_regression_crash_classmethod() -> None:
def test_max_inferred_for_complicated_class_hierarchy() -> None:
"""Regression test for a crash reported in
- https://github.com/PyCQA/pylint/issues/5679.
+ https://github.com/pylint-dev/pylint/issues/5679.
The class hierarchy of 'sqlalchemy' is so intricate that it becomes uninferable with
the standard max_inferred of 100. We used to crash when this happened.