Skip to content

Commit

Permalink
fix: test (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc authored Mar 15, 2024
1 parent 5ed7dd0 commit 0ede99b
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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));
}
}

0 comments on commit 0ede99b

Please sign in to comment.