From: tcofoegbu Date: Thu, 4 Jun 2015 10:12:03 +0000 (+0100) Subject: JAL-1756 fix failed test as a result of runing the BioJS updater from a new thread X-Git-Tag: Release_2_10_0~640^2~2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=bd0830d40949c8a701ef82f467e7c0e0b68aba31;hp=49108f16b31dfc534aa148c2c85b85c98fbbddf8;p=jalview.git JAL-1756 fix failed test as a result of runing the BioJS updater from a new thread --- diff --git a/test/jalview/io/BioJsHTMLOutputTest.java b/test/jalview/io/BioJsHTMLOutputTest.java index 3e94aa9..134d84f 100644 --- a/test/jalview/io/BioJsHTMLOutputTest.java +++ b/test/jalview/io/BioJsHTMLOutputTest.java @@ -26,6 +26,15 @@ public class BioJsHTMLOutputTest try { bioJsHtmlOutput.updateBioJS(); + try + { + // allow the update some three seconds to complete before getting latest + // version of BioJS template + Thread.sleep(1000 * 3); + } catch (InterruptedException e) + { + e.printStackTrace(); + } bjsTemplate = BioJsHTMLOutput.getBioJsTemplateAsString(); // System.out.println(bjsTemplate); } catch (IOException e)