summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormbeierl <mark.beierl@dell.com>2017-02-24 14:29:08 -0500
committermbeierl <mark.beierl@dell.com>2017-02-24 15:52:40 -0500
commitf99c335a029ad6b3ce09486a12da9e666a710803 (patch)
treef03da63ce090540b844c8df427ce9c405e576c52 /tests
parent176b0ff44e6e5b8e3133a5b2fc652fa3850779d8 (diff)
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 <mark.beierl@dell.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/db_tests/job_db_test.py2
1 files changed, 1 insertions, 1 deletions
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)