Skip to content

Commit b227748

Browse files
committed
fix test_query_parser with gist.github.com
1 parent 4f929cd commit b227748

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/query_parser/test_query_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async def test_parse_url_valid_https() -> None:
2929
"https://bitbucket.org/user/repo",
3030
"https://gitea.com/user/repo",
3131
"https://codeberg.org/user/repo",
32-
"https://gitingest.com/user/repo",
32+
"https://gist.github.com/user/repo",
3333
]
3434
for url in test_cases:
3535
parsed_query = await _parse_repo_source(url)
@@ -54,7 +54,7 @@ async def test_parse_url_valid_http() -> None:
5454
"http://bitbucket.org/user/repo",
5555
"http://gitea.com/user/repo",
5656
"http://codeberg.org/user/repo",
57-
"http://gitingest.com/user/repo",
57+
"http://gist.github.com/user/repo",
5858
]
5959
for url in test_cases:
6060
parsed_query = await _parse_repo_source(url)

0 commit comments

Comments
 (0)