Skip to content

Commit

Permalink
Fix missing import and maxzoom arg in test
Browse files Browse the repository at this point in the history
  • Loading branch information
larsmaxfield committed Aug 9, 2024
1 parent eb2773f commit 732bcd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/test/test_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
pmtiles_to_dir,
mbtiles_to_pmtiles,
mbtiles_to_header_json,
disk_to_pmtiles
)
from pmtiles.tile import TileType, Compression

Expand Down Expand Up @@ -80,7 +81,7 @@ def test_roundtrip(self):

pmtiles_to_dir("test_tmp.pmtiles","test_dir")

disk_to_pmtiles("test_dir", "test_tmp_from_dir.pmtiles", tile_format="pbz")
disk_to_pmtiles("test_dir", "test_tmp_from_dir.pmtiles", maxzoom="auto", tile_format="pbz")

def test_mbtiles_header(self):
header, json_metadata = mbtiles_to_header_json(
Expand Down

0 comments on commit 732bcd9

Please sign in to comment.