Index: applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideAbstractImageTest.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideAbstractImageTest.java	(revision 34419)
+++ applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideAbstractImageTest.java	(revision 34428)
@@ -13,6 +13,6 @@
 public class StreetsideAbstractImageTest {
 
-  @Rule
-  public JOSMTestRules rules = new StreetsideTestRules().platform();
+  /*@Rule
+  public JOSMTestRules rules = new StreetsideTestRules().platform();*/
 
   @Test
Index: applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideDataTest.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideDataTest.java	(revision 34419)
+++ applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideDataTest.java	(revision 34428)
@@ -25,6 +25,6 @@
 public class StreetsideDataTest {
 
-  @Rule
-  public JOSMTestRules rules = new StreetsideTestRules().platform();
+  /*@Rule
+  public JOSMTestRules rules = new StreetsideTestRules().platform();*/
 
   private StreetsideData data;
@@ -96,5 +96,4 @@
    * Tests the selection of images.
    */
-  @Ignore
   @Test
   public void selectTest() {
@@ -113,5 +112,4 @@
    * {@link StreetsideData#selectPrevious()} methods.
    */
-  @Ignore
   @Test
   public void nextAndPreviousTest() {
@@ -128,5 +126,4 @@
   }
 
-  @Ignore
   @Test(expected=IllegalStateException.class)
   public void nextOfNullImgTest() {
@@ -135,5 +132,4 @@
   }
 
-  @Ignore
   @Test(expected=IllegalStateException.class)
   public void previousOfNullImgTest() {
@@ -146,5 +142,4 @@
    * multiselected List should reset.
    */
-  @Ignore
   @Test
   public void multiSelectTest() {
Index: applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideLayerTest.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideLayerTest.java	(revision 34419)
+++ applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideLayerTest.java	(revision 34428)
@@ -73,5 +73,4 @@
   }
 
-  @Ignore
   @Test
   public void testClearInstance() {
Index: applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/GraphicsUtilsTest.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/GraphicsUtilsTest.java	(revision 34419)
+++ applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/GraphicsUtilsTest.java	(revision 34428)
@@ -48,5 +48,5 @@
 
   /**
-   * Test method for {@link org.openstreetmap.josm.plugins.streetside.cubemap.GraphicsUtils#convertBufferedImage2JavaFXImage(java.awt.image.BufferedImage)}.
+   * Test method for {@link org.openstreetmap.josm.plugins.streetside.utils.GraphicsUtils#convertBufferedImage2JavaFXImage(java.awt.image.BufferedImage)}.
    */
   @Ignore
@@ -57,5 +57,5 @@
 
   /**
-   * Test method for {@link org.openstreetmap.josm.plugins.streetside.cubemap.GraphicsUtils#buildMultiTiledCubemapFaceImage(java.awt.image.BufferedImage[])}.
+   * Test method for {@link org.openstreetmap.josm.plugins.streetside.utils.GraphicsUtils#buildMultiTiledCubemapFaceImage(java.awt.image.BufferedImage[])}.
    */
   @Ignore
@@ -66,5 +66,5 @@
 
   /**
-   * Test method for {@link org.openstreetmap.josm.plugins.streetside.cubemap.GraphicsUtils#rotateImage(java.awt.image.BufferedImage)}.
+   * Test method for {@link org.openstreetmap.josm.plugins.streetside.utils.GraphicsUtils#rotateImage(java.awt.image.BufferedImage)}.
    */
   @Ignore
Index: applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTaskTest.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTaskTest.java	(revision 34419)
+++ applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTaskTest.java	(revision 34428)
@@ -21,8 +21,8 @@
   public final void testCall() {
     ExecutorService pool = Executors.newFixedThreadPool(1);
-    List<Callable<String>> tasks = new ArrayList<>(1);
+    List<Callable<List<String>>> tasks = new ArrayList<>(1);
       tasks.add(new TileDownloadingTask("2202112030033001233"));
       try {
-        List<Future<String>> results = pool.invokeAll(tasks);
+        List<Future<List<String>>> results = pool.invokeAll(tasks);
         assertEquals(results.get(0),"2202112030033001233");
       } catch (InterruptedException e) {
