Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Sep 23, 2024
1 parent 3ba42ff commit aad05bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ vi.mock('@opentrons/shared-data', async importOriginal => {
inferModuleOrientationFromXCoordinate: vi.fn(),
}
})
vi.mock('/app/resources/runs')
vi.mock('/app/resources/runs/useMostRecentCompletedAnalysis')
vi.mock('../../../../ODD/ProtocolSetup/ProtocolSetupModulesAndDeck/utils')
vi.mock('../../../ModuleInfo')
vi.mock('/app/resources/modules')
Expand Down
2 changes: 1 addition & 1 deletion app/src/organisms/LabwarePositionCheck/useLaunchLPC.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import {
import {
useCreateTargetedMaintenanceRunMutation,
useNotifyRunQuery,
useMostRecentCompletedAnalysis,
} from '/app/resources/runs'
import { LabwarePositionCheck } from '.'
import { useMostRecentCompletedAnalysis } from '/app/resources/runs'
import { getLabwareDefinitionsFromCommands } from '/app/molecules/Command/utils/getLabwareDefinitionsFromCommands'

import type { RobotType } from '@opentrons/shared-data'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ vi.mock('/app/redux/config')
vi.mock('/app/redux/pipettes')
vi.mock('/app/organisms/Devices/hooks')
vi.mock('/app/resources/instruments')
vi.mock('/app/redux-resources/robots')

const mockAttachedPipettes: AttachedPipettesByMount = {
left: mockAttachedPipette,
Expand Down
2 changes: 1 addition & 1 deletion app/src/resources/runs/__fixtures__/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './mockRuns'
import modifiedSimpleV6Protocol from './modifiedSimpleV6.json'
export * from './mockRuns'

export { modifiedSimpleV6Protocol }

0 comments on commit aad05bd

Please sign in to comment.