Index: /trunk/test/unit/org/openstreetmap/josm/gui/util/RotationAngleTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/util/RotationAngleTest.java	(revision 8261)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/util/RotationAngleTest.java	(revision 8262)
@@ -9,30 +9,4 @@
 
     @Test
-    public void testParseRad() throws Exception {
-        assertThat(RotationAngle.buildStaticRotation("0.54rad").getRotationAngle(null), is(0.54));
-        assertThat(RotationAngle.buildStaticRotation("1.").getRotationAngle(null), is(1.));
-    }
-
-    @Test
-    public void testParseDeg() throws Exception {
-        assertThat(RotationAngle.buildStaticRotation("180°").getRotationAngle(null), is(Math.PI));
-        assertThat(RotationAngle.buildStaticRotation("90deg").getRotationAngle(null), is(Math.PI / 2));
-    }
-
-    @Test
-    public void testParseGrad() throws Exception {
-        assertThat(RotationAngle.buildStaticRotation("200grad").getRotationAngle(null), is(Math.PI));
-        assertThat(RotationAngle.buildStaticRotation("100grad").getRotationAngle(null), is(Math.PI / 2));
-        assertThat(RotationAngle.buildStaticRotation("400grad").getRotationAngle(null), is(Math.PI * 2));
-    }
-
-    @Test
-    public void testParseTurn() throws Exception {
-        assertThat(RotationAngle.buildStaticRotation("0.5turn").getRotationAngle(null), is(Math.PI));
-        assertThat(RotationAngle.buildStaticRotation("0.25turn").getRotationAngle(null), is(Math.PI / 2));
-        assertThat(RotationAngle.buildStaticRotation("1turn").getRotationAngle(null), is(Math.PI * 2));
-    }
-
-    @Test
     public void testParseCardinal() throws Exception {
         assertThat(RotationAngle.buildStaticRotation("south").getRotationAngle(null), is(Math.PI));
@@ -43,5 +17,5 @@
     @Test(expected = IllegalArgumentException.class)
     public void testParseFail() throws Exception {
-        RotationAngle.buildStaticRotation("0.54bad");
+        RotationAngle.buildStaticRotation("bad");
     }
 
