diff --git a/python/lsst/ts/standardscripts/maintel/mtmount/park_mount.py b/python/lsst/ts/standardscripts/maintel/mtmount/park_mount.py index 169d8ca9..03300847 100644 --- a/python/lsst/ts/standardscripts/maintel/mtmount/park_mount.py +++ b/python/lsst/ts/standardscripts/maintel/mtmount/park_mount.py @@ -106,5 +106,4 @@ async def configure(self, config): setattr(self.mtcs.check, comp, False) async def run(self): - await self.mtcs.assert_all_enabled() await self.mtcs.park_mount(position=self.position) diff --git a/python/lsst/ts/standardscripts/maintel/mtmount/unpark_mount.py b/python/lsst/ts/standardscripts/maintel/mtmount/unpark_mount.py index 5b569415..e098b1c9 100644 --- a/python/lsst/ts/standardscripts/maintel/mtmount/unpark_mount.py +++ b/python/lsst/ts/standardscripts/maintel/mtmount/unpark_mount.py @@ -98,5 +98,4 @@ async def configure(self, config): setattr(self.mtcs.check, comp, False) async def run(self): - await self.mtcs.assert_all_enabled() await self.mtcs.unpark_mount() diff --git a/tests/test_maintel_mtmount_park_mount.py b/tests/test_maintel_mtmount_park_mount.py index 291501fa..632666b4 100644 --- a/tests/test_maintel_mtmount_park_mount.py +++ b/tests/test_maintel_mtmount_park_mount.py @@ -65,7 +65,6 @@ async def test_park_zenith(self): async with self.make_dry_script(): await self.configure_script(position="ZENITH") await self.run_script() - self.script.mtcs.assert_all_enabled.assert_awaited_once() self.script.mtcs.park_mount.assert_called_with( position=MTMount.ParkPosition.ZENITH ) @@ -74,7 +73,6 @@ async def test_park_horizon(self): async with self.make_dry_script(): await self.configure_script(position="HORIZON") await self.run_script() - self.script.mtcs.assert_all_enabled.assert_awaited_once() self.script.mtcs.park_mount.assert_called_with( position=MTMount.ParkPosition.HORIZON ) diff --git a/tests/test_maintel_mtmount_unpark_mount.py b/tests/test_maintel_mtmount_unpark_mount.py index 6820ddac..d3812ce2 100644 --- a/tests/test_maintel_mtmount_unpark_mount.py +++ b/tests/test_maintel_mtmount_unpark_mount.py @@ -64,5 +64,4 @@ async def test_run(self): async with self.make_dry_script(): await self.configure_script() await self.run_script() - self.script.mtcs.assert_all_enabled.assert_awaited_once() self.script.mtcs.unpark_mount.assert_called_once()