Index: trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java
===================================================================
--- trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java	(revision 7428)
+++ trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java	(revision 7429)
@@ -8,10 +8,17 @@
 import org.openstreetmap.josm.data.coor.LatLonTest;
 
+/**
+ * Checks that rounding of coordinates is not too slow.
+ */
 public class RoundingPerformanceTest {
 
     private static double oldRoundToOsmPrecision(double value) {
-        return Math.round(value / LatLon.MAX_SERVER_PRECISION) * LatLon.MAX_SERVER_PRECISION; // Old method, causes rounding errors, but efficient
+        // Old method, causes rounding errors, but efficient
+        return Math.round(value / LatLon.MAX_SERVER_PRECISION) * LatLon.MAX_SERVER_PRECISION;
     }
 
+    /**
+     * Checks that rounding of coordinates is not too slow.
+     */
     @Test
     public void test() {
@@ -37,5 +44,5 @@
         System.out.println("New time: "+newTime/1000000.0 + " ms");
 
-        assertTrue(newTime <= oldTime*10);
+        assertTrue(newTime <= oldTime*12);
     }
 }
