Skip to content

Commit 115a6d5

Browse files
committed
format
1 parent 839c98a commit 115a6d5

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

test/python_tests/reprojection_test.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ def test_zoom_all_will_fail(setup):
2020
def test_zoom_all_will_work_with_max_extent():
2121
m = mapnik.Map(512, 512)
2222
mapnik.load_map(m, '../data/good_maps/wgs842merc_reprojection.xml')
23-
merc_bounds = mapnik.Box2d(-20037508.34, -
24-
20037508.34, 20037508.34, 20037508.34)
23+
merc_bounds = mapnik.Box2d(-20037508.34, -20037508.34, 20037508.34, 20037508.34)
2524
m.maximum_extent = merc_bounds
2625
m.zoom_all()
2726
# note - fixAspectRatio is being called, then re-clipping to maxextent
@@ -37,8 +36,7 @@ def test_zoom_all_will_work_with_max_extent():
3736
def test_visual_zoom_all_rendering1():
3837
m = mapnik.Map(512, 512)
3938
mapnik.load_map(m, '../data/good_maps/wgs842merc_reprojection.xml')
40-
merc_bounds = mapnik.Box2d(-20037508.34, -
41-
20037508.34, 20037508.34, 20037508.34)
39+
merc_bounds = mapnik.Box2d(-20037508.34, -20037508.34, 20037508.34, 20037508.34)
4240
m.maximum_extent = merc_bounds
4341
m.zoom_all()
4442
im = mapnik.Image(512, 512)

0 commit comments

Comments
 (0)