Skip to content

Commit

Permalink
fix: fix failing cli options test (#1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamassoltesz authored Oct 9, 2024
1 parent 7b22988 commit 142e500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/io/supertokens/test/CLIOptionsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public void cli2TempLocationTest() throws Exception {
assertNotNull(process.checkOrWaitForEvent(PROCESS_STATE.STOPPED));

//process starts with tempDirLocation param too.
args = new String[]{"../", "tempDirLocation=" + new File("../temp/").getAbsolutePath()};
args = new String[]{"../", "tempDirLocation=" + new File("../tempDir/").getAbsolutePath()};

process = TestingProcessManager.start(args);
assertNotNull(process.checkOrWaitForEvent(PROCESS_STATE.STARTED));
Expand Down

0 comments on commit 142e500

Please sign in to comment.