JAL-3521 Adjusted wrapper shell script and .desktop file to cater for opening a file...
[jalview.git] / test / jalview / io / cache / JvCacheableInputBoxTest.java
index dfd7973..84a8be6 100644 (file)
@@ -13,8 +13,8 @@ public class JvCacheableInputBoxTest
 
   private static final String TEST_CACHE_KEY = "CACHE.UNIT_TEST";
 
-  private JvCacheableInputBox<String> cacheBox = new JvCacheableInputBox<String>(
-          TEST_CACHE_KEY);
+  private JvCacheableInputBox<String> cacheBox = new JvCacheableInputBox<>(
+          TEST_CACHE_KEY, 20);
 
   @BeforeClass(alwaysRun = true)
   private void setUpCache()
@@ -34,7 +34,7 @@ public class JvCacheableInputBoxTest
 
     try
     {
-      // This 1ms delay is essential to prevent the
+      // This delay is essential to prevent the
       // assertion below from executing before
       // swing thread finishes updating the combo-box
       Thread.sleep(100);
@@ -55,10 +55,9 @@ public class JvCacheableInputBoxTest
     cacheBox.updateCache();
     try
     {
-      // This 1ms delay is essential to prevent the
-      // assertion below from executing before
-      // cacheBox.updateCache() finishes updating the cache
-      Thread.sleep(100);
+      // This delay is to let
+      // cacheBox.updateCache() finish updating the cache
+      Thread.sleep(200);
     } catch (InterruptedException e)
     {
       e.printStackTrace();