From 2f98032f1065c62e5f48c64ee9b01f281031fb59 Mon Sep 17 00:00:00 2001 From: Jennifer Power Date: Fri, 11 Aug 2023 22:10:14 -0400 Subject: [PATCH] docs: updates test comments in test_gitlab.py Signed-off-by: Jennifer Power --- tests/trestlebot/test_gitlab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/trestlebot/test_gitlab.py b/tests/trestlebot/test_gitlab.py index d27b3966..36ce69aa 100644 --- a/tests/trestlebot/test_gitlab.py +++ b/tests/trestlebot/test_gitlab.py @@ -56,7 +56,7 @@ def test_parse_repository(repo_url: str) -> None: ], ) def test_parse_repository_with_server_url(repo_url: str) -> None: - """Test an invalid url input""" + """Test with a custom server url""" gl = GitLab("fake", "https://mygitlab.com") owner, repo_name = gl.parse_repository(repo_url) @@ -74,7 +74,7 @@ def test_parse_repository_with_server_url(repo_url: str) -> None: ], ) def test_parse_repository_with_group(repo_url: str) -> None: - """Test an invalid url input""" + """Test with nested namespaces""" gl = GitLab("fake", "https://mygitlab.com") owner, repo_name = gl.parse_repository(repo_url)