diff --git a/app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/OrganizationControllerTest.java b/app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/WorkspaceControllerTest.java similarity index 93% rename from app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/OrganizationControllerTest.java rename to app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/WorkspaceControllerTest.java index 451b66e3e3..b56917ee54 100644 --- a/app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/OrganizationControllerTest.java +++ b/app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/WorkspaceControllerTest.java @@ -20,15 +20,15 @@ import org.springframework.web.reactive.function.BodyInserters; @RunWith(SpringRunner.class) @WebFluxTest(WorkspaceController.class) @Import(SecurityTestConfig.class) -public class OrganizationControllerTest { +public class WorkspaceControllerTest { @Autowired private WebTestClient webTestClient; @MockBean - private WorkspaceService organizationService; + private WorkspaceService workspaceService; @MockBean - private UserWorkspaceService userOrganizationService; + private UserWorkspaceService userWorkspaceService; @MockBean private UserService userService;