summaryrefslogtreecommitdiff
path: root/tests/message/test_no_removed_msgid_or_symbol_used.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/message/test_no_removed_msgid_or_symbol_used.py')
-rw-r--r--tests/message/test_no_removed_msgid_or_symbol_used.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/message/test_no_removed_msgid_or_symbol_used.py b/tests/message/test_no_removed_msgid_or_symbol_used.py
index 3b0134235..7b13dc460 100644
--- a/tests/message/test_no_removed_msgid_or_symbol_used.py
+++ b/tests/message/test_no_removed_msgid_or_symbol_used.py
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
-# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
+# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
+# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
from pylint.lint import PyLinter
from pylint.message._deleted_message_ids import DELETED_MESSAGES_IDS
@@ -10,7 +10,7 @@ def test_no_removed_msgid_or_symbol_used(linter: PyLinter) -> None:
"""Tests that we're not using deleted msgid or symbol.
This could cause occasional bugs, but more importantly confusion and inconsistencies
- when searching for old msgids online. See https://github.com/PyCQA/pylint/issues/5729
+ when searching for old msgids online. See https://github.com/pylint-dev/pylint/issues/5729
"""
for deleted_messages in DELETED_MESSAGES_IDS.values():
for msgid, symbol, old_names in deleted_messages: