Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarZanzouri committed Oct 9, 2024
1 parent 40c443b commit 95bbf2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ export function useRecoveryCommands({
const releaseGripperJaws = useCallback((): Promise<CommandData[]> => {
return chainRunRecoveryCommands([RELEASE_GRIPPER_JAW])
}, [chainRunRecoveryCommands])


return {
resumeRun,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import fixedTrashUncasted from '../../../labware/definitions/2/opentrons_1_trash
describe('getFixedTrashLabwareDefinitionsByUri', () => {
it(`should return the fixed trash labware defition`, () => {
expect(
getFixedTrashLabwareDefinitionsByUri(
'opentrons_1_trash_3200ml_fixed'
)
).toEqual({ ['opentrons_1_trash_3200ml_fixed']: (fixedTrashUncasted as unknown) as LabwareDefinition2 })
getFixedTrashLabwareDefinitionsByUri('opentrons_1_trash_3200ml_fixed')
).toEqual({
opentrons_1_trash_3200ml_fixed: (fixedTrashUncasted as unknown) as LabwareDefinition2,
})
})
})

0 comments on commit 95bbf2e

Please sign in to comment.