Skip to content

Commit

Permalink
fix(app): Correct "it's" to "its" in OT-2 calibration copy (#16051)
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring authored Aug 19, 2024
1 parent 674e484 commit 332fbf6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/src/assets/localization/en/robot_calibration.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"pipette_offset_recalibrate_both_mounts": "Pipette offsets for both mounts will have to be recalibrated.",
"pipette_offset_requires_tip_length": "You don’t have a tip length saved with this pipette yet. You will need to calibrate tip length before calibrating your pipette offset.",
"pipette_offset_title": "pipette offset calibration",
"place_cal_block": "Place the Calibration Block into it's designated slot",
"place_cal_block": "Place the Calibration Block into its designated slot",
"place_full_tip_rack": "Place a full {{tip_rack}} into slot 8",
"position_pipette_over_tip": "Position pipette over A1",
"prepare_the_space": "Prepare the space",
Expand Down
12 changes: 4 additions & 8 deletions app/src/organisms/CalibrationPanels/__tests__/DeckSetup.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('DeckSetup', () => {

screen.getByRole('heading', { name: 'Prepare the space' })
screen.getByText('Place a full 300ul Tiprack FIXTURE into slot 8')
screen.getByText("Place the Calibration Block into it's designated slot")
screen.getByText('Place the Calibration Block into its designated slot')
expect(screen.queryByText('To check the left pipette:')).toBeNull()
expect(screen.queryByText('Clear all other deck slots')).toBeNull()
})
Expand All @@ -88,9 +88,7 @@ describe('DeckSetup', () => {
screen.getByRole('heading', { name: 'Prepare the space' })
screen.getByText('Place a full 300ul Tiprack FIXTURE into slot 8')
expect(
screen.queryByText(
"Place the Calibration Block into it's designated slot"
)
screen.queryByText('Place the Calibration Block into its designated slot')
).toBeNull()
expect(screen.queryByText('To check the left pipette:')).toBeNull()
expect(screen.queryByText('Clear all other deck slots')).toBeNull()
Expand All @@ -105,7 +103,7 @@ describe('DeckSetup', () => {

screen.getByRole('heading', { name: 'Prepare the space' })
screen.getByText('Place a full fake tiprack display name into slot 8')
screen.getByText("Place the Calibration Block into it's designated slot")
screen.getByText('Place the Calibration Block into its designated slot')
screen.getByText('To check the left pipette:')
screen.getByText('Clear all other deck slots')
})
Expand All @@ -122,9 +120,7 @@ describe('DeckSetup', () => {
screen.getByText('To check the left pipette:')
screen.getByText('Clear all other deck slots')
expect(
screen.queryByText(
"Place the Calibration Block into it's designated slot"
)
screen.queryByText('Place the Calibration Block into its designated slot')
).toBeNull()
})
})

0 comments on commit 332fbf6

Please sign in to comment.