Skip to content

Commit

Permalink
Fixing a couple of broken tests...
Browse files Browse the repository at this point in the history
  • Loading branch information
kartographer committed Nov 23, 2024
1 parent 6138b9a commit d304b64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/pyuvdata/telescopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
height=1019.222 * units.m,
),
"antenna_diameters": 6.1,
"citation": "Private communication (2024)",
},
}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_telescopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# Using set here is a quick way to drop duplicate entries
expected_known_telescopes = list(
set(astropy_sites + ["PAPER", "HERA", "SMA", "SZA", "OVRO-LWA"])
set(astropy_sites + ["PAPER", "HERA", "SMA", "SZA", "OVRO-LWA", "ATA"])
)


Expand Down
2 changes: 1 addition & 1 deletion tests/uvdata/test_uvdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ def test_known_telescopes():

# Using set to drop duplicate entries
known_telescopes = list(
set(astropy_sites + ["PAPER", "HERA", "SMA", "SZA", "OVRO-LWA"])
set(astropy_sites + ["PAPER", "HERA", "SMA", "SZA", "OVRO-LWA", "ATA"])
)
# calling np.sort().tolist() because [].sort() acts inplace and returns None
# Before test had None == None
Expand Down

0 comments on commit d304b64

Please sign in to comment.