Index: trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java	(revision 9785)
+++ trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java	(revision 9790)
@@ -293,5 +293,5 @@
             }
             Projection proj = Projections.getProjectionByCode(ref.code);
-            double scale = ((CustomProjection) proj).getMetersPerUnitProj();
+            double scale = ((CustomProjection) proj).getToMeter();
             for (Pair<LatLon, EastNorth> p : ref.data) {
                 LatLon ll = p.a;
@@ -303,4 +303,5 @@
                     en = new EastNorth(en.north(), en.east());
                 }
+                en = new EastNorth(en.east() * scale, en.north() * scale); // convert to meter
                 final double EPSILON_EN = 1e-2; // 1cm
                 if (!isEqual(enRef, en, EPSILON_EN, true)) {
