Changeset 19182 in josm


Ignore:
Timestamp:
2024-08-12T19:48:25+02:00 (3 months ago)
Author:
stoecker
Message:

reduce test threshold to get MacOS working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java

    r19108 r19182  
    188188        // expected: eastnorth(-1004398.8994415681,24167.8944844745),
    189189        // but got:  eastnorth(-1004398.8994415683,24167.894484478747)!
    190         return Math.abs(d1 - d2) <= 1200 * Math.ulp(d1);
     190        // MacOS has higher errors, otherwise 1200 would be enough
     191        return Math.abs(d1 - d2) <= 1700 * Math.ulp(d1);
    191192    }
    192193
Note: See TracChangeset for help on using the changeset viewer.