diff --git a/src/test/java/io/supertokens/test/authRecipe/UserPaginationTest.java b/src/test/java/io/supertokens/test/authRecipe/UserPaginationTest.java index 3e54930d5..9480c7a36 100644 --- a/src/test/java/io/supertokens/test/authRecipe/UserPaginationTest.java +++ b/src/test/java/io/supertokens/test/authRecipe/UserPaginationTest.java @@ -353,10 +353,6 @@ public void testUserPaginationWorksCorrectlyForEachTenant() throws Exception { @Test public void testUserPaginationWithSameTimeJoined() throws Exception { - String[] args = {"../"}; - TestingProcessManager.TestingProcess process = TestingProcessManager.start(args); - assertNotNull(process.checkOrWaitForEvent(ProcessState.PROCESS_STATE.STARTED)); - if (StorageLayer.getBaseStorage(process.main).getType() != STORAGE_TYPE.SQL) { return; } @@ -415,8 +411,5 @@ public void testUserPaginationWithSameTimeJoined() throws Exception { assertEquals(userIds.size(), paginationUserIds.size()); assertEquals(userIds, paginationUserIds); } - - process.kill(); - assertNotNull(process.checkOrWaitForEvent(ProcessState.PROCESS_STATE.STOPPED)); } }