Skip to content

Commit e0379e5

Browse files
committed
update cdc covidnet
1 parent 928dc24 commit e0379e5

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

cdc_covidnet/tests/test_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class TestRun:
1010
def test_match_old_to_new_output(self):
11-
output_fnames = ["202010_state_wip_covidnet.csv", "202011_state_wip_covidnet.csv"]
11+
output_fnames = ["202010_state_covidnet.csv", "202011_state_covidnet.csv"]
1212
cached_files = [
1313
"networkid_2_catchmentid_11.json",
1414
"networkid_2_catchmentid_14.json",

cdc_covidnet/tests/test_update_sensor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ def test_syn_update_sensor(self):
9090
assert pd.isna(hosp_df["sample_size"]).all()
9191

9292
# Check actual files generated
93-
expected_files = ["202010_state_wip_covidnet.csv", "202011_state_wip_covidnet.csv"]
93+
expected_files = ["202010_state_covidnet.csv", "202011_state_covidnet.csv"]
9494
expected_files = [join(temp_dir, exp_file) for exp_file in expected_files]
9595
for exp_file in expected_files:
9696
assert exists(exp_file)
97-
assert not exists("202012_state_wip_covidnet.csv")
97+
assert not exists("202012_state_covidnet.csv")
9898

9999
for i, exp_file in enumerate(expected_files):
100100
data = pd.read_csv(exp_file)

0 commit comments

Comments
 (0)