Skip to content

Commit 142e500

Browse files
authored
fix: fix failing cli options test (#1059)
1 parent 7b22988 commit 142e500

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/io/supertokens/test/CLIOptionsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public void cli2TempLocationTest() throws Exception {
302302
assertNotNull(process.checkOrWaitForEvent(PROCESS_STATE.STOPPED));
303303

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

307307
process = TestingProcessManager.start(args);
308308
assertNotNull(process.checkOrWaitForEvent(PROCESS_STATE.STARTED));

0 commit comments

Comments
 (0)