diff --git a/src/server/server_config.py b/src/server/server_config.py index 6918bf24..d333e6a1 100644 --- a/src/server/server_config.py +++ b/src/server/server_config.py @@ -14,7 +14,7 @@ EXAMPLE_REPOS: list[dict[str, str]] = [ {"name": "Gitingest", "url": "https://github.com/coderamp-labs/gitingest"}, - {"name": "FastAPI", "url": "https://github.com/tiangolo/fastapi"}, + {"name": "FastAPI", "url": "https://github.com/fastapi/fastapi"}, {"name": "Flask", "url": "https://github.com/pallets/flask"}, {"name": "Excalidraw", "url": "https://github.com/excalidraw/excalidraw"}, {"name": "ApiAnalytics", "url": "https://github.com/tom-draper/api-analytics"}, diff --git a/tests/query_parser/test_git_host_agnostic.py b/tests/query_parser/test_git_host_agnostic.py index ce95aa9b..9a67201b 100644 --- a/tests/query_parser/test_git_host_agnostic.py +++ b/tests/query_parser/test_git_host_agnostic.py @@ -14,7 +14,7 @@ # Repository matrix: (host, user, repo) _REPOS: list[tuple[str, str, str]] = [ - ("github.com", "tiangolo", "fastapi"), + ("github.com", "fastapi", "fastapi"), ("gitlab.com", "gitlab-org", "gitlab-runner"), ("bitbucket.org", "na-dna", "llm-knowledge-share"), ("gitea.com", "xorm", "xorm"),