Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ndcube/extra_coords/tests/test_lookup_table_coord.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@
assert sub_ltc.table.shape == (10,)
assert sub_ltc._slice == [slice(4, 10, None), slice(5, 10, None)]

assert sub_ltc.wcs.world_to_pixel(4*u.deg, 5*u.deg) == [0.0, 0.0]
assert sub_ltc[1:, 1:].wcs.world_to_pixel(5*u.deg, 6*u.deg) == [0.0, 0.0]
assert list(sub_ltc.wcs.world_to_pixel_values(4*u.deg, 5*u.deg)) == [0.0, 0.0]
assert list(sub_ltc[1:, 1:].wcs.world_to_pixel_values(5*u.deg, 6*u.deg)) == [0.0, 0.0]

Check warning on line 422 in ndcube/extra_coords/tests/test_lookup_table_coord.py

View check run for this annotation

Codecov / codecov/patch

ndcube/extra_coords/tests/test_lookup_table_coord.py#L421-L422

Added lines #L421 - L422 were not covered by tests


def test_2d_skycoord_no_mesh_slice(lut_2d_skycoord_no_mesh):
Expand Down
Loading