Skip to content

Commit

Permalink
TST: Fix transformer area of interest tests (#1433)
Browse files Browse the repository at this point in the history
  • Loading branch information
snowman2 authored Aug 30, 2024
1 parent fcba68a commit 1a3c3a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def test_transformer__area_of_interest():
transformer = Transformer.from_crs(
"EPSG:7789",
"EPSG:4936",
area_of_interest=AreaOfInterest(-177.25, -44.64, -43.3, -175.54),
area_of_interest=AreaOfInterest(-177.25, -44.64, -175.54, -43.3),
)
assert (
transformer.description
Expand All @@ -757,7 +757,7 @@ def test_transformer_proj__area_of_interest():
transformer = Transformer.from_proj(
"EPSG:7789",
"EPSG:4936",
area_of_interest=AreaOfInterest(-177.25, -44.64, -43.3, -175.54),
area_of_interest=AreaOfInterest(-177.25, -44.64, -175.54, -43.3),
)
assert (
transformer.description
Expand Down

0 comments on commit 1a3c3a1

Please sign in to comment.