Skip to content

Commit

Permalink
Address PR comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoRocchietti committed Nov 16, 2024
1 parent f6aadf3 commit f0c861f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Original file line number Diff line number Diff line change
Expand Up @@ -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()
2 changes: 0 additions & 2 deletions tests/test_maintel_mtmount_park_mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand All @@ -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
)
1 change: 0 additions & 1 deletion tests/test_maintel_mtmount_unpark_mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit f0c861f

Please sign in to comment.