Skip to content

Commit

Permalink
change deprecated pandas argument
Browse files Browse the repository at this point in the history
  • Loading branch information
mpound committed Nov 6, 2024
1 parent 862469e commit c9b37f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dysh/fits/tests/test_gbtfitsload.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def test_contruct_integration_number(self):
index_file = p / "AGBT20B_014_03.raw.vegas.A6.index"
data_file = p / "AGBT20B_014_03.raw.vegas.A6.fits"
g = gbtfitsload.GBTFITSLoad(data_file)
gbtidl_index = pd.read_csv(index_file, skiprows=10, delim_whitespace=True)
gbtidl_index = pd.read_csv(index_file, skiprows=10, sep="\s+")
assert np.all(g._index["INTNUM"] == gbtidl_index["INT"])

def test_getps_smoothref(self):
Expand Down

0 comments on commit c9b37f1

Please sign in to comment.