From 1db78d4ba424719203b2c65a81a6414ea15b08b3 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 28 Aug 2019 09:42:11 -0700 Subject: [PATCH] Attempt quick fix for CI failures. --- test/lib/ansible_test/_internal/util_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/ansible_test/_internal/util_common.py b/test/lib/ansible_test/_internal/util_common.py index d41343bf5a3..3816e62c9c3 100644 --- a/test/lib/ansible_test/_internal/util_common.py +++ b/test/lib/ansible_test/_internal/util_common.py @@ -133,7 +133,7 @@ def write_text_test_results(category, name, content): # type: (ResultType, str, def write_json_file(path, content, create_directories=False): # type: (str, t.Union[t.List[t.Any], t.Dict[str, t.Any]], bool) -> None """Write the given json content to the specified path, optionally creating missing directories.""" - text_content = json.dumps(content, sort_keys=True, indent=4, ensure_ascii=False) + '\n' + text_content = json.dumps(content, sort_keys=True, indent=4) + '\n' write_text_file(path, text_content, create_directories=create_directories)