From 3f352eacc6c590a6ea184d6035984a6eb13cef3f Mon Sep 17 00:00:00 2001 From: Chris Frohoff Date: Thu, 7 Sep 2017 21:41:14 -0700 Subject: [PATCH] bumping up wait time --- src/test/java/ysoserial/payloads/CommandExecTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/ysoserial/payloads/CommandExecTest.java b/src/test/java/ysoserial/payloads/CommandExecTest.java index 9a7e8aa..22a952c 100644 --- a/src/test/java/ysoserial/payloads/CommandExecTest.java +++ b/src/test/java/ysoserial/payloads/CommandExecTest.java @@ -22,7 +22,7 @@ public class CommandExecTest implements CustomTest { } catch (Exception e) { e.printStackTrace(); } - Files.waitForFile(testFile, 1000); + Files.waitForFile(testFile, 5000); Assert.assertTrue("test file should exist", testFile.exists()); testFile.deleteOnExit(); }