Index: trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameFixTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameFixTest.java	(revision 12253)
+++ trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameFixTest.java	(revision 12253)
@@ -0,0 +1,33 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.io.remotecontrol;
+
+import static org.junit.Assert.assertEquals;
+
+import java.io.IOException;
+
+import org.junit.Test;
+
+/**
+ * Unit tests of {@link DNSNameFix} class.
+ */
+public class DNSNameFixTest {
+
+    /**
+     * Unit test of {@link DNSNameFix#DNSNameFix} - null check.
+     * @throws IOException always (expected with null name)
+     */
+    @Test(expected = IOException.class)
+    public void testDNSNameNull() throws IOException {
+        new DNSNameFix(null);
+    }
+
+    /**
+     * Unit test of {@link DNSNameFix#DNSNameFix} - nominal cases.
+     * @throws IOException never
+     */
+    @Test
+    public void testDNSNameNominal() throws IOException {
+        assertEquals("localhost", new DNSNameFix("localhost").getName());
+        assertEquals("127.0.0.1", new DNSNameFix("127.0.0.1").getName());
+    }
+}
Index: trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameTest.java	(revision 12252)
+++ 	(revision )
@@ -1,33 +1,0 @@
-// License: GPL. For details, see LICENSE file.
-package org.openstreetmap.josm.io.remotecontrol;
-
-import static org.junit.Assert.assertEquals;
-
-import java.io.IOException;
-
-import org.junit.Test;
-
-/**
- * Unit tests of {@link DNSName} class.
- */
-public class DNSNameTest {
-
-    /**
-     * Unit test of {@link DNSName#DNSName} - null check.
-     * @throws IOException always (expected with null name)
-     */
-    @Test(expected = IOException.class)
-    public void testDNSNameNull() throws IOException {
-        new DNSName(null);
-    }
-
-    /**
-     * Unit test of {@link DNSName#DNSName} - nominal cases.
-     * @throws IOException never
-     */
-    @Test
-    public void testDNSNameNominal() throws IOException {
-        assertEquals("localhost", new DNSName("localhost").getName());
-        assertEquals("127.0.0.1", new DNSName("127.0.0.1").getName());
-    }
-}
