From e125ed95e058ebb6ec1ff1f6a827935031a79923 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 3 Jan 2023 12:38:53 -0300 Subject: [PATCH] [Tests] Patched GS.exec_with_retry --- tests/test_plot/test_misc_2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_plot/test_misc_2.py b/tests/test_plot/test_misc_2.py index a237f9e4..c935ffea 100644 --- a/tests/test_plot/test_misc_2.py +++ b/tests/test_plot/test_misc_2.py @@ -58,6 +58,7 @@ def mocked_call(cmd, exit_with=None): def patch_functions(m): m.setattr("subprocess.check_output", mocked_check_output) m.setattr('kibot.kiplot.exec_with_retry', mocked_call) + GS.exec_with_retry = mocked_call def init_globals():