From d52b28577d18267998a95a352b0d0a70b8f41231 Mon Sep 17 00:00:00 2001 From: tamassoltesz Date: Wed, 9 Oct 2024 14:50:06 +0200 Subject: [PATCH] fix: fix failing cli options test --- src/test/java/io/supertokens/test/CLIOptionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/io/supertokens/test/CLIOptionsTest.java b/src/test/java/io/supertokens/test/CLIOptionsTest.java index 94e489ed5..e3bae94f0 100644 --- a/src/test/java/io/supertokens/test/CLIOptionsTest.java +++ b/src/test/java/io/supertokens/test/CLIOptionsTest.java @@ -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));