From f99c335a029ad6b3ce09486a12da9e666a710803 Mon Sep 17 00:00:00 2001 From: mbeierl Date: Fri, 24 Feb 2017 14:29:08 -0500 Subject: Fixing final report Makes the report readable instead of JSON escaped and dumps it to the Jenkins daily when done. Change-Id: Ic3788672b185461369e2c41221ae36fc4b45436b Signed-off-by: mbeierl --- tests/db_tests/job_db_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/db_tests') diff --git a/tests/db_tests/job_db_test.py b/tests/db_tests/job_db_test.py index ccfb9cc..9b09a80 100644 --- a/tests/db_tests/job_db_test.py +++ b/tests/db_tests/job_db_test.py @@ -186,7 +186,7 @@ class JobDBTest(unittest.TestCase): self.assertEqual(start_time, row[3], "Did not expect " + str(row[3])) def test_job_params(self): - expected = {"a": "1", "b": "2"} + expected = {u"a": 1, u"b": 2} self.job.job_id = "ABCD" self.job.record_workload_params(expected) actual = self.job.fetch_workload_params(self.job.job_id) -- cgit 1.2.3-korg