From 27477083dae9159deec56f8f9450a6433ba2baae Mon Sep 17 00:00:00 2001 From: Josh McVey Date: Mon, 10 Feb 2025 17:32:19 -0600 Subject: [PATCH] fix test --- protocol-designer/cypress/support/SetupSteps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol-designer/cypress/support/SetupSteps.ts b/protocol-designer/cypress/support/SetupSteps.ts index 1e32fda982f..650551105d4 100644 --- a/protocol-designer/cypress/support/SetupSteps.ts +++ b/protocol-designer/cypress/support/SetupSteps.ts @@ -131,7 +131,7 @@ export enum SetupLocators { FlexOption = 'button:contains("Opentrons Flex")', OT2Option = 'button:contains("Opentrons OT-2")', NinetySixChannel = 'div:contains("96-Channel")', - ThermocyclerImage = 'img[alt="temperatureModuleType"]', + ThermocyclerImage = 'img[alt="thermocyclerModuleType"]', MagblockImage = 'img[alt="magneticBlockType"]', HeaterShakerImage = 'img[alt="heaterShakerModuleType"]', TemperatureModuleImage = 'img[alt="temperatureModuleType"]', @@ -630,7 +630,7 @@ export const setupVerificationHandlers = { }, [SetupVerifications.ThermocyclerImg]: { handler: (): void => { - cy.get(SetupLocators.TemperatureModuleImage).should('be.visible') + cy.get(SetupLocators.ThermocyclerImage).should('be.visible') }, paramType: undefined, },