File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/dl_api_lib_testing/dl_api_lib_testing/connector Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,11 +131,11 @@ def test_export_import_dataset(
131131 control_api .delete_dataset (dataset_id = import_resp .json ["id" ])
132132
133133 # test import without a connection
134- import_data : dict = {
134+ import_without_conn_data : dict = {
135135 "id_mapping" : {}, # empty
136136 "data" : {"workbook_id" : None , "dataset" : export_resp .json ["dataset" ]},
137137 }
138- import_resp = control_api .import_dataset (data = import_data , bi_headers = bi_headers )
139- assert import_resp .status_code == 200 , f"{ import_resp .json } != { export_resp .json } "
138+ import_without_conn_resp = control_api .import_dataset (data = import_without_conn_data , bi_headers = bi_headers )
139+ assert import_without_conn_resp .status_code == 200 , f"{ import_without_conn_resp .json } != { export_resp .json } "
140140
141- control_api .delete_dataset (dataset_id = import_resp .json ["id" ])
141+ control_api .delete_dataset (dataset_id = import_without_conn_resp .json ["id" ])
You can’t perform that action at this time.
0 commit comments