diff --git a/tests/scripts/remote_monitoring_tests/fault_tolerant_tests/kruize_pod_restart_test.py b/tests/scripts/remote_monitoring_tests/fault_tolerant_tests/kruize_pod_restart_test.py index 057b694aa..fd9a42ac3 100644 --- a/tests/scripts/remote_monitoring_tests/fault_tolerant_tests/kruize_pod_restart_test.py +++ b/tests/scripts/remote_monitoring_tests/fault_tolerant_tests/kruize_pod_restart_test.py @@ -133,7 +133,12 @@ def main(argv): # Fetch listExperiments list_exp_json_file_before = list_exp_json_dir + "/list_exp_json_before_" + str(i) + ".json" - response = list_experiments() + # assign params to be passed in listExp + results = "true" + recommendations = "true" + latest = "false" + experiment_name = None + response = list_experiments(results, recommendations, latest, experiment_name) if response.status_code == SUCCESS_200_STATUS_CODE: list_exp_json = response.json() else: @@ -173,7 +178,11 @@ def main(argv): # Fetch listExperiments list_exp_json_file_after = list_exp_json_dir + "/list_exp_json_after_" + str(i) + ".json" - response = list_experiments() + results = "true" + recommendations = "true" + latest = "false" + experiment_name = None + response = list_experiments(results, recommendations, latest, experiment_name) if response.status_code == SUCCESS_200_STATUS_CODE: list_exp_json = response.json() else: diff --git a/tests/scripts/remote_monitoring_tests/rest_apis/test_update_results.py b/tests/scripts/remote_monitoring_tests/rest_apis/test_update_results.py index 47ffc7106..b782db844 100644 --- a/tests/scripts/remote_monitoring_tests/rest_apis/test_update_results.py +++ b/tests/scripts/remote_monitoring_tests/rest_apis/test_update_results.py @@ -762,8 +762,9 @@ def test_update_results__duplicate_records_with_single_exp_multiple_results(clus # assign params to be passed in listExp results = "true" + recommendations = "false" latest = "false" - response = list_experiments(results, None, latest, experiment_name) + response = list_experiments(results, recommendations, latest, experiment_name) list_exp_json = response.json() assert response.status_code == SUCCESS_200_STATUS_CODE