From 8fc01eaf29a9e71b5f7f2c34779d7b98aafd5199 Mon Sep 17 00:00:00 2001 From: Mark Stephenson Date: Tue, 19 Dec 2023 17:06:58 -0700 Subject: [PATCH] Issue #31: Remove pyswice from failing test --- .../general_satellite_tasking/simulation/test_environment.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unittest/envs/general_satellite_tasking/simulation/test_environment.py b/tests/unittest/envs/general_satellite_tasking/simulation/test_environment.py index 786b9ac5..dce51956 100644 --- a/tests/unittest/envs/general_satellite_tasking/simulation/test_environment.py +++ b/tests/unittest/envs/general_satellite_tasking/simulation/test_environment.py @@ -84,10 +84,6 @@ def test_init_and_delete(self, grav_set, epoch_set, atmos_set, eclipse_set): @patch(basicenv + "_init_environment_objects", MagicMock()) @patch(module + "simIncludeGravBody", MagicMock()) - @patch( - module + "pyswice", - MagicMock(), - ) def test_set_gravity_bodies(self): # Smoke test env = BasicEnvironmentModel(MagicMock(), 1.0)