From 30a2f3f91a04d69368a3591f28874a8da6948e36 Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Mon, 28 Nov 2016 16:17:05 -0500 Subject: Data Handling Refactoring Break out test db interaction into new module and make the push event driven instead of the sleep that was there before. Change-Id: I9485aba1405f6c3b4ee5000168fbc037efa87c81 JIRA: STORPERF-90 Signed-off-by: Mark Beierl --- tests/db_tests/job_db_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/db_tests') diff --git a/tests/db_tests/job_db_test.py b/tests/db_tests/job_db_test.py index fe3d9f1..ccfb9cc 100644 --- a/tests/db_tests/job_db_test.py +++ b/tests/db_tests/job_db_test.py @@ -7,14 +7,15 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -from storperf.db.job_db import JobDB -from storperf.workloads.rr import rr import os import sqlite3 import unittest import mock +from storperf.db.job_db import JobDB +from storperf.workloads.rr import rr + class JobDBTest(unittest.TestCase): -- cgit 1.2.3-korg