diff --git a/tests/Auto-GPT-test-cassettes b/tests/Auto-GPT-test-cassettes index 38ecb0145aa..dbea8039474 160000 --- a/tests/Auto-GPT-test-cassettes +++ b/tests/Auto-GPT-test-cassettes @@ -1 +1 @@ -Subproject commit 38ecb0145aa3a88e2eb5f04a556146614a2882e1 +Subproject commit dbea803947475a53ee764aa4f74f304796f197fc diff --git a/tests/challenges/utils/build_current_score.py b/tests/challenges/utils/build_current_score.py index aec125b4004..b8e752424dc 100644 --- a/tests/challenges/utils/build_current_score.py +++ b/tests/challenges/utils/build_current_score.py @@ -40,4 +40,5 @@ def recursive_sort_dict(data: dict) -> dict: sorted_data = recursive_sort_dict(merged_data) with open(current_score_filename, "w") as f_current: - json.dump(sorted_data, f_current, indent=4) + json_data = json.dumps(sorted_data, indent=4) + f_current.write(json_data + "\n")