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 5ed31b4 commit 3e10c78Copy full SHA for 3e10c78
tests/api/test_tiles.py
@@ -94,9 +94,9 @@ def test_tilematrixsets(config, api_):
94
assert 'tileMatrixSets' in root
95
assert len(root['tileMatrixSets']) == 2
96
assert 'http://www.opengis.net/def/tilematrixset/OGC/1.0/WorldCRS84Quad' \
97
- in root['tileMatrixSets'][0]['uri']
+ in root['tileMatrixSets'][0]['uri'] or root['tileMatrixSets'][1]['uri']
98
assert 'http://www.opengis.net/def/tilematrixset/OGC/1.0/WebMercatorQuad' \
99
- in root['tileMatrixSets'][1]['uri']
+ in root['tileMatrixSets'][1]['uri'] or root['tileMatrixSets'][1]['uri']
100
101
req = mock_api_request({'f': 'html'})
102
rsp_headers, code, response = tilematrixsets(api_, req)
0 commit comments