Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AtlasDelta and AtlasDeltaGenerator Revamp #195

Merged
merged 10 commits into from
Aug 16, 2018
Prev Previous commit
no more abbrev.
  • Loading branch information
hallahan committed Aug 16, 2018
commit 3043dc73a47aa0e48210a3f6d746112c1f806891
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,14 @@ public void readAtlases()
public void testGeoJson()
{
final String geoJson = delta.toGeoJson();
final int len = geoJson.length();
Assert.assertEquals(22424431, len);
Assert.assertEquals(22424431, geoJson.length());
}

@Test
public void testRelationsGeoJson()
{
final String relationsGeoJson = delta.toRelationsGeoJson();
final int len = relationsGeoJson.length();
Assert.assertEquals(454484, len);
Assert.assertEquals(454484, relationsGeoJson.length());
}

/**
Expand Down