You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2022/12/20 03:04:12 UTC

[superset] branch rm-dataset-name-convention updated: fixe test

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch rm-dataset-name-convention
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/rm-dataset-name-convention by this push:
     new 78d273ecaf fixe test
78d273ecaf is described below

commit 78d273ecafb44b8e275dd76489c7d8ef6c7d4fda
Author: hughhhh <hu...@gmail.com>
AuthorDate: Mon Dec 19 22:03:33 2022 -0500

    fixe test
---
 tests/integration_tests/explore/api_tests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/integration_tests/explore/api_tests.py b/tests/integration_tests/explore/api_tests.py
index dee7424a09..dabe4bbc55 100644
--- a/tests/integration_tests/explore/api_tests.py
+++ b/tests/integration_tests/explore/api_tests.py
@@ -112,7 +112,7 @@ def test_no_params_provided(test_client, login_as_admin):
 
 def test_get_from_cache(test_client, login_as_admin, dataset):
     resp = test_client.get(
-        f"api/v1/explore/?form_data_key={FORM_DATA_KEY}&dataset_id={dataset.id}&dataset_type={dataset.type}"
+        f"api/v1/explore/?form_data_key={FORM_DATA_KEY}&datasource_id={dataset.id}&datasource_type={dataset.type}"
     )
     assert resp.status_code == 200
     data = json.loads(resp.data.decode("utf-8"))