From c5297b0b86918829c7c69d5c4a5e9d9dd15c4e6a Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Thu, 19 Mar 2020 08:42:07 -0400 Subject: [PATCH] Fix sanity error --- awx_collection/test/awx/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/test/awx/conftest.py b/awx_collection/test/awx/conftest.py index 7658862f5e..a6c5a6cea1 100644 --- a/awx_collection/test/awx/conftest.py +++ b/awx_collection/test/awx/conftest.py @@ -155,7 +155,7 @@ def run_module(request, collection_import): try: result = json.loads(module_stdout) except Exception as e: - raise Exception('Module did not write valid JSON, error: {}, stdout:\n{}'.format(str(e), module_stdout)) + raise Exception('Module did not write valid JSON, error: {0}, stdout:\n{1}'.format(str(e), module_stdout)) # A module exception should never be a test expectation if 'exception' in result: raise Exception('Module encountered error:\n{0}'.format(result['exception']))