Skip to content

Commit ff97ab9

Browse files
authored
Merge pull request #1519 from djhoese/remove-old-test
2 parents 3692f8a + f3815db commit ff97ab9

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

docs/history.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Change Log
99
- DEP: Add win_arm64 wheels
1010
- DEP: Add Python 3.13 free-threading wheels
1111
- DEP: Add Python 3.14 and 3.14 free-threading wheels
12+
- TST: Remove irrelevant test with modern PROJ versions
1213

1314
3.7.1
1415
------

test/test_transformer.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1310,27 +1310,6 @@ def test_transform_bounds__beyond_global_bounds():
13101310
)
13111311

13121312

1313-
@pytest.mark.parametrize(
1314-
"input_crs,input_bounds,expected_bounds",
1315-
[
1316-
(
1317-
"ESRI:102036",
1318-
(-180.0, -90.0, 180.0, 1.3),
1319-
(0, -116576599, 0, 0),
1320-
),
1321-
("ESRI:54026", (-180.0, -90.0, 180.0, 90.0), (0, -179545824, 0, 179545824)),
1322-
],
1323-
)
1324-
def test_transform_bounds__ignore_inf(input_crs, input_bounds, expected_bounds):
1325-
crs = CRS(input_crs)
1326-
transformer = Transformer.from_crs(crs.geodetic_crs, crs, always_xy=True)
1327-
assert_almost_equal(
1328-
transformer.transform_bounds(*input_bounds),
1329-
expected_bounds,
1330-
decimal=0,
1331-
)
1332-
1333-
13341313
def test_transform_bounds__ignore_inf_geographic():
13351314
crs_wkt = (
13361315
'PROJCS["Interrupted_Goode_Homolosine",'

0 commit comments

Comments
 (0)