From 932cc3fa7edb2109f49175d75ac4fb8423c1d072 Mon Sep 17 00:00:00 2001 From: Taher Chegini Date: Sun, 26 May 2024 09:35:30 -0400 Subject: [PATCH] MNT: Use int for reslution. [skip ci] --- tests/test_exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py index 78e9370..f5de001 100644 --- a/tests/test_exceptions.py +++ b/tests/test_exceptions.py @@ -21,10 +21,10 @@ def test_wrong_bbox(): def test_wrong_layer(): geom = GEOM.bounds with pytest.raises(InputValueError, match="DEM"): - _ = py3dep.get_map("None", geom, 1e3) + _ = py3dep.get_map("None", geom, 1000) def test_wrong_crs(): geom = GEOM.bounds with pytest.raises(InputValueError, match="crs"): - _ = py3dep.get_map("DEM", geom, 1e3, DEF_CRS, "ESRI:102003") + _ = py3dep.get_map("DEM", geom, 1000, DEF_CRS, "ESRI:102003")