From 80738e373a910b1a566b00146e6d440b88d46a1d Mon Sep 17 00:00:00 2001 From: Dong Zhou Date: Mon, 1 Apr 2024 22:22:44 -0400 Subject: [PATCH] fix unit tests --- tests/test_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_main.py b/tests/test_main.py index 5a15b3e..4afe4f8 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -196,7 +196,7 @@ def test_clone_with_url(mock_run): @patch( - "gita.utils.parse_clone_config", + "gita.io.parse_clone_config", return_value=[["git@github.com:user/repo.git", "repo", "/a/repo"]], ) @patch("gita.utils.run_async", new=async_mock()) @@ -217,7 +217,7 @@ def test_clone_with_config_file(*_): @patch( - "gita.utils.parse_clone_config", + "gita.io.parse_clone_config", return_value=[["git@github.com:user/repo.git", "repo", "/a/repo"]], ) @patch("gita.utils.run_async", new=async_mock())