From 6168528964329f5eef84c029dc429f97d8113292 Mon Sep 17 00:00:00 2001 From: evanchia Date: Thu, 21 Oct 2021 14:44:43 -0700 Subject: [PATCH] fixing unit tests Signed-off-by: evanchia --- Tools/LyTestTools/tests/unit/test_o3de_editor_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/LyTestTools/tests/unit/test_o3de_editor_test.py b/Tools/LyTestTools/tests/unit/test_o3de_editor_test.py index f16f7533d4..3f6c23ea3d 100644 --- a/Tools/LyTestTools/tests/unit/test_o3de_editor_test.py +++ b/Tools/LyTestTools/tests/unit/test_o3de_editor_test.py @@ -486,7 +486,7 @@ class TestUtils(unittest.TestCase): mock_test.__name__ = 'mock_test_name' mock_test_list = [mock_test] mock_output = 'JSON_START(' \ - '{"name": "mock_module_name", "output": "mock_std_out", "failed": "mock_fail_data"}' \ + '{"name": "mock_module_name", "output": "mock_std_out", "failed": "mock_fail_data", "success": ""}' \ ')JSON_END' mock_fail = mock.MagicMock() mock_create.return_value = mock_fail @@ -534,10 +534,10 @@ class TestUtils(unittest.TestCase): '{"name": "mock_module_name_pass", "output": "mock_std_out", "success": "mock_success_data"}' \ ')JSON_END' \ 'JSON_START(' \ - '{"name": "mock_module_name_fail", "output": "mock_std_out", "failed": "mock_fail_data"}' \ + '{"name": "mock_module_name_fail", "output": "mock_std_out", "failed": "mock_fail_data", "success": ""}' \ ')JSON_END' \ 'JSON_START(' \ - '{"name": "mock_module_name_unknown", "output": "mock_std_out", "failed": "mock_fail_data"}' \ + '{"name": "mock_module_name_unknown", "output": "mock_std_out", "failed": "mock_fail_data", "success": ""}' \ ')JSON_END' mock_editor_log = 'JSON_START(' \ '{"name": "mock_module_name_pass"}' \