Skip to content

Commit

Permalink
docs: updates test comments in test_gitlab.py
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Aug 12, 2023
1 parent acc6840 commit 2f98032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/trestlebot/test_gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 2f98032

Please sign in to comment.