X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2Fcache%2FJvCacheableInputBoxTest.java;h=3e0aa367a8b64029697d21f617e5f475f05a3b1e;hb=42ab9fcdad6ea5c39bca0fb8b5564c2d420dc183;hp=13a94640de37bdca5d785f5891d21c31e7a25864;hpb=e9a1c2c372f4bbf6cf658de3dba73ef326b20c20;p=jalview.git diff --git a/test/jalview/io/cache/JvCacheableInputBoxTest.java b/test/jalview/io/cache/JvCacheableInputBoxTest.java index 13a9464..3e0aa36 100644 --- a/test/jalview/io/cache/JvCacheableInputBoxTest.java +++ b/test/jalview/io/cache/JvCacheableInputBoxTest.java @@ -20,8 +20,11 @@ */ package jalview.io.cache; +import java.lang.reflect.InvocationTargetException; import java.util.LinkedHashSet; +import javax.swing.SwingUtilities; + import org.junit.Assert; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; @@ -54,11 +57,18 @@ public class JvCacheableInputBoxTest try { - // This delay is essential to prevent the - // assertion below from executing before - // swing thread finishes updating the combo-box - Thread.sleep(100); - } catch (InterruptedException e) + // This delay is essential to prevent the assertion below from executing + // before swing thread finishes updating the combo-box + SwingUtilities.invokeAndWait(() -> { + try + { + Thread.sleep(1); + } catch (InterruptedException e) + { + e.printStackTrace(); + } + }); + } catch (InvocationTargetException | InterruptedException e) { e.printStackTrace(); } @@ -73,12 +83,20 @@ public class JvCacheableInputBoxTest cacheBox.addItem(testInput); cacheBox.setSelectedItem(testInput); cacheBox.updateCache(); + try { - // This delay is to let - // cacheBox.updateCache() finish updating the cache - Thread.sleep(200); - } catch (InterruptedException e) + // This delay is to let cacheBox.updateCache() finish updating the cache + SwingUtilities.invokeAndWait(() -> { + try + { + Thread.sleep(1); + } catch (InterruptedException e) + { + e.printStackTrace(); + } + }); + } catch (InvocationTargetException | InterruptedException e) { e.printStackTrace(); }