Skip to content

Commit 488a9d1

Browse files
committed
fix test
1 parent 3bca88e commit 488a9d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jhu/tests/test_smooth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ def test_output_files_smoothed(self, run_as_module):
99
dates = [str(x) for x in range(20200303, 20200310)]
1010

1111
smoothed = pd.read_csv(
12-
join("./receiving", f"{dates[-1]}_state_confirmed_7dav_cumulative_num.csv")
12+
join("./receiving", f"{dates[-1]}_state_confirmed_7dav_incidence_num.csv")
1313
)
1414

1515
# Build a dataframe out of the individual day files
1616
raw = pd.concat(
1717
[
1818
pd.read_csv(
19-
join("./receiving", f"{date}_state_confirmed_cumulative_num.csv")
19+
join("./receiving", f"{date}_state_confirmed_incidence_num.csv")
2020
)
2121
for date in dates
2222
]

0 commit comments

Comments
 (0)