Skip to content

Commit 0cf5d1b

Browse files
committed
misplaced sort_keys
probably from the merge
1 parent 0332726 commit 0cf5d1b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/folium_tests.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,13 +474,11 @@ def test_fit_bounds(self):
474474
fit_bounds_rendered = fit_bounds_tpl.render({
475475
'bounds': json.dumps(bounds),
476476
'fit_bounds_options': json.dumps({'maxZoom': 15,
477-
'padding': (3, 3), }),
478-
}, sort_keys=True)
477+
'padding': (3, 3), }, sort_keys=True),
478+
})
479479

480480
self.map.fit_bounds(bounds, max_zoom=15, padding=(3, 3))
481481

482-
print(self.map.template_vars['fit_bounds'])
483-
print(fit_bounds_rendered)
484482
assert self.map.template_vars['fit_bounds'] == fit_bounds_rendered
485483

486484
def test_image_overlay(self):

0 commit comments

Comments
 (0)