Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Sep 19, 2023
1 parent 70beda5 commit 34d69ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/tests/opentrons/hardware_control/test_ot3_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,9 @@ async def test_gripper_action_works_with_gripper(
}
await ot3_hardware.cache_gripper(instr_data)

with pytest.raises(CommandPreconditionViolated, match="Cannot grip gripper jaw before homing"):
with pytest.raises(
CommandPreconditionViolated, match="Cannot grip gripper jaw before homing"
):
await ot3_hardware.grip(5.0)
await ot3_hardware.home_gripper_jaw()
mock_ungrip.assert_called_once()
Expand Down

0 comments on commit 34d69ea

Please sign in to comment.