Skip to content

Commit

Permalink
Fix order of antenna tuples in 1 test
Browse files Browse the repository at this point in the history
  • Loading branch information
philbull committed Dec 3, 2018
1 parent 69f9acf commit e6a8ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hera_pspec/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_calc_blpair_reds(self):
Nblps_per_group=2)
nt.assert_equal(len(blps), 10)
nt.assert_true(isinstance(blps[0], list))
nt.assert_equal(blps[0], [((37, 24), (38, 25)), ((37, 24), (37, 24))])
nt.assert_equal(blps[0], [((24, 37), (25, 38)), ((24, 37), (24, 37))])

# test baseline select on uvd
uvd2 = copy.deepcopy(uvd)
Expand Down

0 comments on commit e6a8ee5

Please sign in to comment.