diff --git a/components/org.wso2.carbon.identity.application.authenticator.magiclink/src/test/java/org/wso2/carbon/identity/application/authenticator/magiclink/MagicLinkAuthenticatorTest.java b/components/org.wso2.carbon.identity.application.authenticator.magiclink/src/test/java/org/wso2/carbon/identity/application/authenticator/magiclink/MagicLinkAuthenticatorTest.java index 7ab5f6e..8b83757 100644 --- a/components/org.wso2.carbon.identity.application.authenticator.magiclink/src/test/java/org/wso2/carbon/identity/application/authenticator/magiclink/MagicLinkAuthenticatorTest.java +++ b/components/org.wso2.carbon.identity.application.authenticator.magiclink/src/test/java/org/wso2/carbon/identity/application/authenticator/magiclink/MagicLinkAuthenticatorTest.java @@ -585,7 +585,7 @@ public void testGetAuthInitiationData() { Assert.assertEquals(authenticatorDataObj.getAuthParams().size(), authenticatorParamMetadataList.size(), "Size of lists should be equal."); Assert.assertEquals(authenticatorDataObj.getPromptType(), - MagicLinkAuthenticatorConstants.USER_PROMPT, "Prompt Type should match."); + FrameworkConstants.AuthenticatorPromptType.USER_PROMPT, "Prompt Type should match."); for (int i = 0; i < authenticatorParamMetadataList.size(); i++) { AuthenticatorParamMetadata expectedParam = authenticatorParamMetadataList.get(i); AuthenticatorParamMetadata actualParam = authenticatorDataObj.getAuthParams().get(i);