From 8adf2ff1eb90025920465ac491c13b29c608e4c2 Mon Sep 17 00:00:00 2001 From: Robert Tice Date: Fri, 31 May 2019 11:55:37 -0400 Subject: [PATCH] Removing debug ASCII printing. --- infrastructure/container_payload/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/container_payload/run.py b/infrastructure/container_payload/run.py index 571e6a0..5327043 100644 --- a/infrastructure/container_payload/run.py +++ b/infrastructure/container_payload/run.py @@ -333,7 +333,7 @@ def safe_run(workdir, mode, lab): if test["actual"] == test["out"]: test["status"] = "Success" else: - print_stderr("Program output ({}) does not match expected output ({}).".format(' '.join(str(ord(c)) for c in test["actual"]), ' '.join(str(ord(c)) for c in test["out"]))) + print_stderr("Program output ({}) does not match expected output ({}).".format(test["actual"], test["out"])) test["status"] = "Failed" success = False else: