Skip to content

Commit

Permalink
[hotfix] fixing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 14, 2016
1 parent 34e107e commit e099088
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion superset/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ def load_long_lat_data():
"datasource_type": "table",
"granularity": "day",
"since": "2014-01-01",
"until": "2016-12-12",
"until": "now",
"where": "",
"viz_type": "mapbox",
"all_columns_x": "LON",
Expand Down
3 changes: 2 additions & 1 deletion tests/core_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from superset.views import DatabaseView

from .base_tests import SupersetTestCase
import logging


class CoreTests(SupersetTestCase):
Expand Down Expand Up @@ -134,7 +135,7 @@ def test_slices(self):
(slc.slice_name, 'slice_id_url', slc.slice_id_url),
]
for name, method, url in urls:
print("[{name}]/[{method}]: {url}".format(**locals()))
logging.info("[{name}]/[{method}]: {url}".format(**locals()))
self.client.get(url)

def test_slices_V2(self):
Expand Down

0 comments on commit e099088

Please sign in to comment.