mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
Changed cache uid to be depending on table in test_csv_response_format (#11214)
This commit is contained in:
@@ -181,7 +181,7 @@ class TestQueryContext(SupersetTestCase):
|
||||
self.assertEqual(len(data.split("\n")), 12)
|
||||
|
||||
ck = db.session.query(CacheKey).order_by(CacheKey.id.desc()).first()
|
||||
assert ck.datasource_uid == "3__table"
|
||||
assert ck.datasource_uid == f"{table.id}__table"
|
||||
|
||||
def test_sql_injection_via_groupby(self):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user