Unittest_suit.py should use the common lib like everyone else does.

Signed-off-by: Jeremy Orlow <jorlow@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1746 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/unittest_suite.py b/unittest_suite.py
index 95cbb44..ca531e8 100644
--- a/unittest_suite.py
+++ b/unittest_suite.py
@@ -2,13 +2,9 @@
 
 import os, sys
 import unittest
+import common
 
-# ensure the root is where it should be
 root = os.path.abspath(os.path.dirname(__file__))
-from client import setup_modules
-setup_modules.setup(base_path=root, root_module_name="autotest_lib")
-
-
 suites = []
 def lister(dummy, dirname, files):
     loader = unittest.TestLoader()