From 0b99548493319ea4863cb9587c273d8a798d21d3 Mon Sep 17 00:00:00 2001 From: Sidhant Goel Date: Fri, 6 May 2022 23:12:07 +0530 Subject: [PATCH] OrganizationControllerTest to WorkspaceControllerTest --- ...tionControllerTest.java => WorkspaceControllerTest.java} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename app/server/appsmith-server/src/test/java/com/appsmith/server/controllers/{OrganizationControllerTest.java => WorkspaceControllerTest.java} (93%) 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;