Skip to content

Commit 9e08815

Browse files
committed
- removed invalid bbox test
1 parent 239e058 commit 9e08815

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/provider/test_wms_facade_provider.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,3 @@ def test_query(config):
6363

6464
results3 = p.query(crs='http://www.opengis.net/def/crs/EPSG/0/3857')
6565
assert len(results3) != len(results)
66-
67-
68-
def test_invalid_bbox_exception(config):
69-
"""Testing query for a invalid bounding box"""
70-
p = WMSFacadeProvider(config)
71-
72-
with pytest.raises(ProviderQueryError) as exc_info:
73-
p.query(bbox=[-2000, -90, 180, 90])
74-
assert "Invalid bounding box" in str(exc_info.value)

0 commit comments

Comments
 (0)