From bd0830d40949c8a701ef82f467e7c0e0b68aba31 Mon Sep 17 00:00:00 2001 From: tcofoegbu Date: Thu, 4 Jun 2015 11:12:03 +0100 Subject: [PATCH 1/1] JAL-1756 fix failed test as a result of runing the BioJS updater from a new thread --- test/jalview/io/BioJsHTMLOutputTest.java | 9 +++++++++ 1 file changed, 9 insertions(+) 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) -- 1.7.10.2