Skip to content

Commit

Permalink
Fix test to sort results
Browse files Browse the repository at this point in the history
  • Loading branch information
taldcroft committed Nov 7, 2024
1 parent 47fd7e4 commit e748730
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions chandra_aca/tests/test_maude_decom.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ def test_aca_images_chunks_1():

imgs_start = maude_decom.get_aca_images(start, CxoTime(start) + 60 * u.s)
imgs_stop = maude_decom.get_aca_images(CxoTime(stop) - 60 * u.s, stop)
imgs_start.sort(["TIME", "IMGNUM"])
imgs_stop.sort(["TIME", "IMGNUM"])
assert np.all(imgs[0] == imgs_start[0])
assert np.all(imgs[-1] == imgs_stop[-1])

Expand Down

0 comments on commit e748730

Please sign in to comment.