From dc5f2e4eabbf090384db89f89a2f008e3842ecea Mon Sep 17 00:00:00 2001 From: foamyguy Date: Mon, 8 Apr 2024 09:05:10 -0500 Subject: [PATCH] try fix for test_get_bundle() --- tests/test_circup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_circup.py b/tests/test_circup.py index 8637aae..f901546 100644 --- a/tests/test_circup.py +++ b/tests/test_circup.py @@ -1026,6 +1026,8 @@ def test_get_bundle(): ) as mock_click, mock.patch( "circup.command_utils.open", mock.mock_open() ) as mock_open, mock.patch( + "circup.os.path.isdir", return_value=True + ), mock.patch( "circup.command_utils.shutil" ) as mock_shutil, mock.patch( "circup.command_utils.zipfile"