From d2163735b5623ed6ac2620231db34a5c478dc24c Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Mon, 25 Oct 2021 09:53:58 -0400 Subject: [PATCH] sleep fix --- .../IngestedWithHashAndFileTypeIntraCaseTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/test/qa-functional/src/org/sleuthkit/autopsy/commonpropertiessearch/IngestedWithHashAndFileTypeIntraCaseTest.java b/Core/test/qa-functional/src/org/sleuthkit/autopsy/commonpropertiessearch/IngestedWithHashAndFileTypeIntraCaseTest.java index 5ed281cd3c..3cef4d1320 100644 --- a/Core/test/qa-functional/src/org/sleuthkit/autopsy/commonpropertiessearch/IngestedWithHashAndFileTypeIntraCaseTest.java +++ b/Core/test/qa-functional/src/org/sleuthkit/autopsy/commonpropertiessearch/IngestedWithHashAndFileTypeIntraCaseTest.java @@ -83,9 +83,9 @@ public class IngestedWithHashAndFileTypeIntraCaseTest extends NbTestCase { Assert.fail(ex.getMessage()); } - // wait 30 seconds for all processes to finish before beginning tests + // wait 10 seconds for all processes to finish before beginning tests try { - Thread.sleep(30_1000); + Thread.sleep(10_000); } catch (InterruptedException ex) { Exceptions.printStackTrace(ex); }