diff --git a/api/src/opentrons/simulate.py b/api/src/opentrons/simulate.py index 47906ba850b..bbf3ae73f85 100644 --- a/api/src/opentrons/simulate.py +++ b/api/src/opentrons/simulate.py @@ -311,7 +311,7 @@ def _validate_can_simulate_for_robot_type(robot_type: RobotType) -> None: # When installed locally, this package can simulate protocols for any robot type. pass elif robot_type != current_robot_type: - # Match robot server behavior: raise an early warning if we're on a robot and the caller + # Match robot server behavior: raise an early error if we're on a robot and the caller # tries to simulate a protocol written for a different robot type. # FIXME: This exposes the internal strings "OT-2 Standard" and "OT-3 Standard".