From 9b5afc5c1f01c89fbc4275659d055b3cce89d907 Mon Sep 17 00:00:00 2001 From: pdmurray Date: Wed, 3 Jul 2024 13:05:26 -0700 Subject: [PATCH] Fix mock issue after merging privatization PR... --- conda-store-server/tests/test_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda-store-server/tests/test_actions.py b/conda-store-server/tests/test_actions.py index 4059f69cd..24595903d 100644 --- a/conda-store-server/tests/test_actions.py +++ b/conda-store-server/tests/test_actions.py @@ -207,7 +207,7 @@ def tmp_dir_side_effect(*args, **kwargs): # Create the installer, but don't actually run `constructor` - it uses conda to solve the # environment, which we don't need to do for the purposes of this test. with mock.patch( - "conda_store_server.action.generate_constructor_installer.logged_command" + "conda_store_server._internal.action.generate_constructor_installer.logged_command" ) as mock_command: generate_constructor_installer.action_generate_constructor_installer( conda_command=conda_store.conda_command,