Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nosarthur committed Apr 2, 2024
1 parent c49e3df commit 80738e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def test_clone_with_url(mock_run):


@patch(
"gita.utils.parse_clone_config",
"gita.io.parse_clone_config",
return_value=[["[email protected]:user/repo.git", "repo", "/a/repo"]],
)
@patch("gita.utils.run_async", new=async_mock())
Expand All @@ -217,7 +217,7 @@ def test_clone_with_config_file(*_):


@patch(
"gita.utils.parse_clone_config",
"gita.io.parse_clone_config",
return_value=[["[email protected]:user/repo.git", "repo", "/a/repo"]],
)
@patch("gita.utils.run_async", new=async_mock())
Expand Down

0 comments on commit 80738e3

Please sign in to comment.