diff --git a/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsSuccessTest.java b/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsSuccessTest.java index 1e51aa627aa..7e7494bb729 100644 --- a/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsSuccessTest.java +++ b/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsSuccessTest.java @@ -132,7 +132,7 @@ public void testGetActionByActionType() { } @Test(dependsOnMethods = {"testGetActionByActionType"}) - public void testGetActions() { + public void testGetActionTypes() { Response responseOfGet = getResponseOfGet(ACTION_MANAGEMENT_API_BASE_PATH + TYPES_API_PATH); responseOfGet.then() @@ -148,7 +148,7 @@ public void testGetActions() { .body( "find { it.type == '" + PRE_ISSUE_ACCESS_TOKEN_ACTION_TYPE + "' }.self", notNullValue()); } - @Test(dependsOnMethods = {"testGetActions"}) + @Test(dependsOnMethods = {"testGetActionTypes"}) public void testUpdateAction() { // Update all the attributes of the action. diff --git a/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsTestBase.java b/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsTestBase.java index f68c245a4fb..0770b8ae09f 100644 --- a/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsTestBase.java +++ b/modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/action/management/v1/ActionsTestBase.java @@ -80,7 +80,6 @@ public class ActionsTestBase extends RESTAPIServerTestBase { NOT_IMPLEMENTED_ACTION_TYPE_PATHS.add("/preUpdatePassword"); NOT_IMPLEMENTED_ACTION_TYPE_PATHS.add("/preUpdateProfile"); NOT_IMPLEMENTED_ACTION_TYPE_PATHS.add("/preRegistration"); - NOT_IMPLEMENTED_ACTION_TYPE_PATHS.add("/authentication"); String API_PACKAGE_NAME = "org.wso2.carbon.identity.api.server.action.management.v1"; try {