JAL-1448 always use UK locale for formatted date properties
[jalview.git] / test / jalview / io / Jalview2xmlTests.java
index e01e785..c2e3a66 100644 (file)
@@ -47,6 +47,7 @@ import jalview.viewmodel.AlignmentViewport;
 
 import java.io.File;
 import java.util.ArrayList;
+import java.util.Date;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
@@ -76,9 +77,8 @@ public class Jalview2xmlTests
      * set news feed last read to a future time to ensure no
      * 'unread' news item is displayed
      */
-    String oneHourFromNow = Cache.date_format
-            .format(System.currentTimeMillis() + 3600 * 1000);
-    Cache.setProperty("JALVIEW_NEWS_RSS_LASTMODIFIED", oneHourFromNow);
+    Date oneHourFromNow = new Date(System.currentTimeMillis() + 3600 * 1000);
+    Cache.setDateProperty("JALVIEW_NEWS_RSS_LASTMODIFIED", oneHourFromNow);
 
     Jalview.main(new String[] {});
   }
@@ -89,7 +89,7 @@ public class Jalview2xmlTests
   @AfterClass(alwaysRun = true)
   public static void tearDownAfterClass() throws Exception
   {
-    jalview.gui.Desktop.instance.closeAll_actionPerformed(null);
+    Desktop.instance.closeAll_actionPerformed(null);
   }
 
   int countDsAnn(jalview.viewmodel.AlignmentViewport avp)