File tree 1 file changed +2
-6
lines changed
integrations/acquisition/covidcast
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 18
18
)
19
19
20
20
# py3tester coverage target (equivalent to `import *`)
21
- __test_target__ = (
22
- "delphi.epidata.acquisition.covidcast." "covidcast_meta_cache_updater"
23
- )
21
+ __test_target__ = "delphi.epidata.acquisition.covidcast." "covidcast_meta_cache_updater"
24
22
25
23
26
24
class CovidcastMetaCacheTests (unittest .TestCase ):
@@ -45,9 +43,7 @@ def setUp(self):
45
43
cur .execute ("truncate table geo_dim" )
46
44
cur .execute ("truncate table signal_dim" )
47
45
# reset the `covidcast_meta_cache` table (it should always have one row)
48
- cur .execute (
49
- 'update covidcast_meta_cache set timestamp = 0, epidata = "[]"'
50
- )
46
+ cur .execute ('update covidcast_meta_cache set timestamp = 0, epidata = "[]"' )
51
47
cnx .commit ()
52
48
cur .close ()
53
49
You can’t perform that action at this time.
0 commit comments