Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci committed Nov 14, 2024
1 parent 7fbb3fc commit b022ebf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ def test_select_position_projected_xy(projected_xy_dataset):
npt.assert_approx_equal(projected_point.y, 21.725), "Latitude is incorrect"

ds = select_by_position(projected_xy_dataset, projected_point)
xrt.assert_equal(ds, projected_xy_dataset.sel(rlon=[18.045], rlat=[21.725], method="nearest"))
xrt.assert_equal(
ds,
projected_xy_dataset.sel(rlon=[18.045], rlat=[21.725], method="nearest"),
)


def test_select_position_regular_xy_interpolate(regular_xy_dataset):
Expand Down

0 comments on commit b022ebf

Please sign in to comment.