Index: trunk/test/functional/org/openstreetmap/josm/io/OsmServerHistoryReaderTest.java
===================================================================
--- trunk/test/functional/org/openstreetmap/josm/io/OsmServerHistoryReaderTest.java	(revision 17154)
+++ 	(revision )
@@ -1,64 +1,0 @@
-// License: GPL. For details, see LICENSE file.
-package org.openstreetmap.josm.io;
-
-import static org.junit.Assert.assertTrue;
-
-import org.junit.BeforeClass;
-import org.junit.Test;
-import org.openstreetmap.josm.JOSMFixture;
-import org.openstreetmap.josm.data.osm.OsmPrimitiveType;
-import org.openstreetmap.josm.data.osm.history.History;
-import org.openstreetmap.josm.data.osm.history.HistoryDataSet;
-import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
-import org.openstreetmap.josm.spi.preferences.Config;
-
-/**
- * History fetching tests. This test operates with production API.
- */
-public class OsmServerHistoryReaderTest {
-
-    /**
-     * Setup tests.
-     */
-    @BeforeClass
-    public static void init() {
-        JOSMFixture.createUnitTestFixture().init();
-        Config.getPref().put("osm-server.url", Config.getUrls().getDefaultOsmApiUrl());
-    }
-
-    /**
-     * Tests node history fetching.
-     * @throws OsmTransferException if any error occurs
-     */
-    @Test
-    public void testNode() throws OsmTransferException {
-        OsmServerHistoryReader reader = new OsmServerHistoryReader(OsmPrimitiveType.NODE, 266187);
-        HistoryDataSet ds = reader.parseHistory(NullProgressMonitor.INSTANCE);
-        History h = ds.getHistory(266187, OsmPrimitiveType.NODE);
-        assertTrue("NumVersions", h.getNumVersions() >= 4);
-    }
-
-    /**
-     * Tests way history fetching.
-     * @throws OsmTransferException if any error occurs
-     */
-    @Test
-    public void testWay() throws OsmTransferException {
-        OsmServerHistoryReader reader = new OsmServerHistoryReader(OsmPrimitiveType.WAY, 3058844);
-        HistoryDataSet ds = reader.parseHistory(NullProgressMonitor.INSTANCE);
-        History h = ds.getHistory(3058844, OsmPrimitiveType.WAY);
-        assertTrue("NumVersions", h.getNumVersions() >= 13);
-    }
-
-    /**
-     * Tests relation history fetching.
-     * @throws OsmTransferException if any error occurs
-     */
-    @Test
-    public void testRelation() throws OsmTransferException {
-        OsmServerHistoryReader reader = new OsmServerHistoryReader(OsmPrimitiveType.RELATION, 49);
-        HistoryDataSet ds = reader.parseHistory(NullProgressMonitor.INSTANCE);
-        History h = ds.getHistory(49, OsmPrimitiveType.RELATION);
-        assertTrue("NumVersions", h.getNumVersions() >= 3);
-    }
-}
