JAL-4513 reduce wait to invoke fail
[jalview.git] / test / jalview / io / cache / JvCacheableInputBoxTest.java
index 9946f4c..3ed15ac 100644 (file)
@@ -52,16 +52,28 @@ public class JvCacheableInputBoxTest
     cacheBox.addItem(testInput);
     cacheBox.setSelectedItem(testInput);
 
+    /*
+    try
+    {
+      SwingUtilities.invokeAndWait(() -> {
+      */
     try
     {
       // This delay is essential to prevent the
       // assertion below from executing before
       // swing thread finishes updating the combo-box
-      Thread.sleep(350);
+      Thread.sleep(10);
     } catch (InterruptedException e)
     {
       e.printStackTrace();
     }
+    ; /*
+      });
+      } catch (InvocationTargetException | InterruptedException e)
+      {
+      e.printStackTrace();
+      }
+      */
     userInput = cacheBox.getUserInput();
     Assert.assertEquals(testInput, userInput);
   }
@@ -73,15 +85,28 @@ public class JvCacheableInputBoxTest
     cacheBox.addItem(testInput);
     cacheBox.setSelectedItem(testInput);
     cacheBox.updateCache();
+
+    /*
+    try
+    {
+      SwingUtilities.invokeAndWait(() -> {
+       */
     try
     {
       // This delay is to let
       // cacheBox.updateCache() finish updating the cache
-      Thread.sleep(350);
+      Thread.sleep(1);
     } catch (InterruptedException e)
     {
       e.printStackTrace();
     }
+    ; /*
+      });
+      } catch (InvocationTargetException | InterruptedException e)
+      {
+      e.printStackTrace();
+      }
+      */
     LinkedHashSet<String> foundCache = appCache
             .getAllCachedItemsFor(TEST_CACHE_KEY);
     Assert.assertTrue(foundCache.contains(testInput));