From 52f10ef960482869f0f9190f2a62220587cf8d15 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Wed, 7 Sep 2022 12:27:59 +0200 Subject: [PATCH] Apply suggestions from code review --- tests/lint/unittest_lint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lint/unittest_lint.py b/tests/lint/unittest_lint.py index f2dca7f37e..80532dea71 100644 --- a/tests/lint/unittest_lint.py +++ b/tests/lint/unittest_lint.py @@ -1098,7 +1098,7 @@ def test_recursive_ignore(ignore_parameter: str, ignore_parameter_value: str) -> def test_relative_imports(initialized_linter: PyLinter) -> None: - """Regression test for https://GitHub.com/PyCQA/pylint/issues/3651""" + """Regression test for https://github.com/PyCQA/pylint/issues/3651""" linter = initialized_linter with tempdir() as tmpdir: create_files(["x/y/__init__.py", "x/y/one.py", "x/y/two.py"], tmpdir) @@ -1151,7 +1151,7 @@ def test_import_sibling_module_from_namespace(initialized_linter: PyLinter) -> N def test_lint_namespace_package_under_dir(initialized_linter: PyLinter) -> None: - """Regression test for https://GitHub.com/PyCQA/pylint/issues/1667""" + """Regression test for https://github.com/PyCQA/pylint/issues/1667""" linter = initialized_linter with tempdir(): create_files(["outer/namespace/__init__.py", "outer/namespace/module.py"])