Making base_test a new style object.
I need this to create unit tests for sub-classes (so I can use __new__ and
not stub all the base_test.__init__() stuff.

Signed-off-by: Jean-Marc Eurin <[email protected]>

--- autotest/client/common_lib/test.py  2010-06-22 15:37:54.000000000 -0700
+++ autotest/client/common_lib/test.py  2010-06-22 15:37:54.000000000 -0700
@@ -23,7 +23,7 @@
 from autotest_lib.client.bin import utils
 
 
-class base_test:
+class base_test(object):
     preserve_srcdir = False
     network_destabilizing = False
_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest

Reply via email to