Changeset 3484 in josm for trunk/test/unit


Ignore:
Timestamp:
2010-08-29T16:00:03+02:00 (14 years ago)
Author:
bastiK
Message:

typo

File:
1 edited

Legend:

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

    r3483 r3484  
    8383
    8484        text += String.format("*** %s %s\n", p.toString(), p.toCode());
    85         for (int num=0; num < 1; ++num) {
     85        for (int num=0; num < 1000; ++num) {
    8686
    8787            double lat = rand.nextDouble() * (b.getMax().lat() - b.getMin().lat()) + b.getMin().lat();
     
    9090            LatLon ll = new LatLon(lat, lon);
    9191
    92             for (int i=0; i<1; ++i) {
     92            for (int i=0; i<10; ++i) {
    9393                EastNorth en = p.latlon2eastNorth(ll);
    9494                ll = p.eastNorth2latlon(en);
Note: See TracChangeset for help on using the changeset viewer.