X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2Fcache%2FJvCacheableInputBoxTest.java;h=7a2f8b406198f1e2e6615826d91bd062a21a07bb;hb=fcb944cdd9de849c89f0a8744ae6e56e22de9c1e;hp=73aae61fc9fb01441c3f24f232c323a4f8f403b9;hpb=cc75fb7e201de35734cd3f1f5f8020b971ebdd92;p=jalview.git diff --git a/test/jalview/io/cache/JvCacheableInputBoxTest.java b/test/jalview/io/cache/JvCacheableInputBoxTest.java index 73aae61..7a2f8b4 100644 --- a/test/jalview/io/cache/JvCacheableInputBoxTest.java +++ b/test/jalview/io/cache/JvCacheableInputBoxTest.java @@ -31,18 +31,7 @@ public class JvCacheableInputBoxTest String testInput = "TestInput"; cacheBox.addItem(testInput); cacheBox.setSelectedItem(testInput); - cacheBox.updateCacheNow(); - - // 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) - // { - // e.printStackTrace(); - // } + cacheBox.updateCacheNow(); // synchronous update userInput = cacheBox.getUserInput(); Assert.assertEquals(testInput, userInput); } @@ -54,19 +43,6 @@ public class JvCacheableInputBoxTest cacheBox.addItem(testInput); cacheBox.setSelectedItem(testInput); cacheBox.updateCacheNow(); - // synchronized (this) - // { - // try - // { - // wait(100); - // // This delay is to let - // // cacheBox.updateCache() finish updating the cache - // Thread.sleep(200); - // } catch (InterruptedException e) - // { - // e.printStackTrace(); - // } - // } LinkedHashSet foundCache = appCache .getAllCachedItemsFor(TEST_CACHE_KEY); Assert.assertTrue(foundCache.contains(testInput));