diff --git a/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/consent/SelfSignUpConsentTest.java b/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/consent/SelfSignUpConsentTest.java index 24d5b7cabd..499b31bf04 100644 --- a/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/consent/SelfSignUpConsentTest.java +++ b/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/consent/SelfSignUpConsentTest.java @@ -194,8 +194,8 @@ public void testForValidUsername() throws Exception { updateResidentIDPProperty(superTenantResidentIDP, ENABLE_SELF_REGISTRATION_PROP_KEY, "true", true); String content = doCallSignUpDo("smith"); - Assert.assertTrue(!content.contains("Password")); - Assert.assertTrue(!content.contains("Confirm password")); + Assert.assertTrue(content.contains("Password")); + Assert.assertTrue(content.contains("Confirm password")); } @@ -206,8 +206,8 @@ public void testPurposesWithoutConfiguredPurposes() throws Exception { updateResidentIDPProperty(tenantResidentIDP, ENABLE_SELF_REGISTRATION_PROP_KEY, "true", false); String content = doCallSignUpDo("smith@" + secondaryTenantDomain); - Assert.assertTrue(!content.contains("Password")); - Assert.assertTrue(!content.contains("Confirm password")); + Assert.assertTrue(content.contains("Password")); + Assert.assertTrue(content.contains("Confirm password")); Assert.assertTrue(!content.contains(FINANCIAL_PURPOSE_NAME)); } @@ -221,8 +221,8 @@ public void testWithPurposes() throws Exception { addFinancialPurpose(); addFinancialPurposeCategory(); String content = doCallSignUpDo("smith@" + secondaryTenantDomain); - Assert.assertTrue(!content.contains("Password")); - Assert.assertTrue(!content.contains("Confirm password")); + Assert.assertTrue(content.contains("Password")); + Assert.assertTrue(content.contains("Confirm password")); Assert.assertTrue(content.contains(FINANCIAL_PURPOSE_NAME)); } diff --git a/modules/integration/tests-integration/tests-backend/src/test/resources/testng.xml b/modules/integration/tests-integration/tests-backend/src/test/resources/testng.xml index 3de90a9548..6557e24171 100644 --- a/modules/integration/tests-integration/tests-backend/src/test/resources/testng.xml +++ b/modules/integration/tests-integration/tests-backend/src/test/resources/testng.xml @@ -213,7 +213,8 @@ - + + diff --git a/pom.xml b/pom.xml index efad82c7f9..62f3094957 100755 --- a/pom.xml +++ b/pom.xml @@ -2381,7 +2381,7 @@ 2.10.6 2.2.56 - 2.0.74 + 2.0.90 1.6.373