Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt committed Jan 15, 2025
1 parent f235636 commit 56a242f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/unit/test_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,17 @@ async def test_registry_async_function_can_be_called(mock_package):
host="github.com",
org="org",
repo="repo",
branch="main",
ref=None,
),
),
# GitHub (with branch)
# GitHub (with branch/sha)
(
"git+ssh://[email protected]/org/repo@branch",
"git+ssh://[email protected]/org/repo@branchOrSHAOrTag",
GitUrl(
host="github.com",
org="org",
repo="repo",
branch="branch",
ref="branchOrSHAOrTag",
),
),
# GitLab
Expand All @@ -174,7 +174,7 @@ async def test_registry_async_function_can_be_called(mock_package):
host="gitlab.com",
org="org",
repo="repo",
branch="main",
ref=None,
),
),
# GitLab (with branch)
Expand All @@ -184,7 +184,7 @@ async def test_registry_async_function_can_be_called(mock_package):
host="gitlab.com",
org="org",
repo="repo",
branch="branch",
ref="branch",
),
),
],
Expand Down

0 comments on commit 56a242f

Please sign in to comment.