Skip to content

Commit a419f15

Browse files
committed
fix: linter error
1 parent f5b7528 commit a419f15

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/gitingest/tests/test_parse_query.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def test_parse_url_valid_https() -> None:
1616
assert result["repo_name"] == "repo"
1717
assert result["url"] == url
1818

19+
1920
def test_parse_url_valid_http() -> None:
2021
test_cases = [
2122
"http://github.com/user/repo",
@@ -28,6 +29,7 @@ def test_parse_url_valid_http() -> None:
2829
assert result["repo_name"] == "repo"
2930
assert result["slug"] == "user-repo"
3031

32+
3133
def test_parse_url_invalid() -> None:
3234
url = "https://only-domain.com"
3335
with pytest.raises(ValueError, match="Invalid repository URL"):

0 commit comments

Comments
 (0)