Skip to content

Commit d460eee

Browse files
Tara LakdawalaTara Lakdawala
authored andcommitted
remove test comment
2 parents ca1cc2f + d7e0dc7 commit d460eee

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

integrations/acquisition/covidcast/test_covidcast_meta_caching.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def test_caching(self):
102102
'mean_value': 1,
103103
'stdev_value': 0,
104104
'max_issue': 20200423,
105+
'min_issue': 20200422,
105106
'min_lag': 0,
106107
'max_lag': 1,
107108
}

src/acquisition/covidcast/database.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ def compute_covidcast_meta(self, table_name='covidcast', use_index=True):
299299
`geo_type` ASC
300300
301301
UNION
302+
302303
SELECT
303304
`time_type`,
304305
`geo_type`.
@@ -312,8 +313,8 @@ def compute_covidcast_meta(self, table_name='covidcast', use_index=True):
312313
`time_type`,
313314
`geo_type`
314315
ORDER BY
315-
`time_type` DESC,
316-
`geo_type` DESC
316+
`time_type` ASC,
317+
`geo_type` ASC
317318
'''
318319

319320
meta = []

0 commit comments

Comments
 (0)