From 7d018be52d09e942ad3eb00ecefcac37bb95ff4b Mon Sep 17 00:00:00 2001 From: Sattvik Chakravarthy Date: Fri, 15 Mar 2024 16:30:53 +0530 Subject: [PATCH] fix: test --- .../io/supertokens/test/authRecipe/UserPaginationTest.java | 7 ------- 1 file changed, 7 deletions(-) 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)); } }