We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e342c4 commit 50db212Copy full SHA for 50db212
integration_tests/test_stack_integrated.py
@@ -32,7 +32,8 @@ def render():
32
33
@pytest.fixture
34
def simpletilespec():
35
- mml = renderapi.image_pyramid.MipMapLevel(0, '/not/a/path.jpg')
+ mm = renderapi.image_pyramid.MipMap(imageUrl='file://not/a/path.jpg')
36
+ ip = renderapi.image_pyramid.ImagePyramid({0: mm})
37
tform = renderapi.transform.AffineModel(labels=['simple'])
38
layout = renderapi.tilespec.Layout(sectionId="section0",
39
scopeId="testscope",
@@ -45,7 +46,7 @@ def simpletilespec():
45
46
ts = renderapi.tilespec.TileSpec(tileId="1000",
47
width=2048,
48
height=2048,
- mipMapLevels=[mml],
49
+ imagePyramid=ip,
50
z=0,
51
tforms=[tform],
52
layout=layout)
0 commit comments