mirror of
https://github.com/apache/superset.git
synced 2026-05-11 19:05:24 +00:00
fix: set correct schema on config import (#16041)
* fix: set correct schema on config import
* Fix lint
* Fix test
* Fix tests
* Fix another test
* Fix another test
* Fix base test
* Add helper function
* Fix examples
* Fix test
* Fix test
* Fixing more tests
(cherry picked from commit 1fbce88a46)
This commit is contained in:
committed by
Elizabeth Thompson
parent
3d8ce130ba
commit
77c4f2cb11
@@ -95,7 +95,7 @@ class TestQueryContext(SupersetTestCase):
|
||||
def test_cache(self):
|
||||
table_name = "birth_names"
|
||||
table = self.get_table(name=table_name)
|
||||
payload = get_query_context(table.name, table.id)
|
||||
payload = get_query_context(table_name, table.id)
|
||||
payload["force"] = True
|
||||
|
||||
query_context = ChartDataQueryContextSchema().load(payload)
|
||||
|
||||
Reference in New Issue
Block a user