Changed cache uid to be depending on table in test_csv_response_format (#11214)

This commit is contained in:
Kasia Kucharczyk 2020-10-09 18:01:26 +02:00 committed by GitHub
parent d93b1afe79
commit 56d5e8a1cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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):
"""