Risk: Required at this point
Visibilty: Under the hood
Here is an update to all public tests adding imports where they were missing
and removing import *

Signed-off-by: Scott Zawalski <scottz@google.com>




git-svn-id: http://test.kernel.org/svn/autotest/trunk@1605 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/selftest/selftest.py b/client/tests/selftest/selftest.py
index 877c364..1baecf9 100644
--- a/client/tests/selftest/selftest.py
+++ b/client/tests/selftest/selftest.py
@@ -1,6 +1,7 @@
-import test
-from autotest_utils import *
-from common.error import *
+import os
+from autotest_lib.client.bin import test
+from autotest_lib.client.common_lib import error
+
 
 class selftest(test.test):
 	version = 1
@@ -28,7 +29,7 @@
 		print "checkpoint %d %d" % (current, checkpoint)
 
 		if (current != checkpoint):
-			raise JobError("selftest: sequence was " +
+			raise error.JobError("selftest: sequence was " +
 				"%d when %d expected" % (current, checkpoint))
 
 	def __throw(self):