Skip to content

Commit ec67149

Browse files
committed
Added missing changes
1 parent 4285b87 commit ec67149

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

integrations/acquisition/covidcast/test_covidcast_meta_caching.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
)
1919

2020
# 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"
2422

2523

2624
class CovidcastMetaCacheTests(unittest.TestCase):
@@ -45,9 +43,7 @@ def setUp(self):
4543
cur.execute("truncate table geo_dim")
4644
cur.execute("truncate table signal_dim")
4745
# 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 = "[]"')
5147
cnx.commit()
5248
cur.close()
5349

0 commit comments

Comments
 (0)