diff options
-rwxr-xr-x | tests/helpers/common.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/helpers/common.py b/tests/helpers/common.py index d020a3c..00e2a35 100755 --- a/tests/helpers/common.py +++ b/tests/helpers/common.py @@ -20,7 +20,6 @@ import ConfigParser import io -from ipsilon.util.plugin import PluginObject import os import pwd import shutil @@ -29,10 +28,9 @@ from string import Template import subprocess -class IpsilonTestBase(PluginObject): +class IpsilonTestBase(object): def __init__(self, name, execname): - super(IpsilonTestBase, self).__init__() self.name = name self.execname = execname self.rootdir = os.getcwd() |