summaryrefslogtreecommitdiffstats
path: root/test/functional/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/tests.py')
-rw-r--r--test/functional/tests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/tests.py b/test/functional/tests.py
index 9469cff..0d9a9ef 100644
--- a/test/functional/tests.py
+++ b/test/functional/tests.py
@@ -149,7 +149,7 @@ def timeout(seconds, method, *args, **kwargs):
return False
-class Utils:
+class Utils(object):
@classmethod
def create_ascii_name(cls, length=None):
return uuid.uuid4().hex
@@ -201,7 +201,7 @@ class Base2(object):
Utils.create_name = Utils.create_ascii_name
-class TestAccountEnv:
+class TestAccountEnv(object):
@classmethod
def setUp(cls):
cls.conn = Connection(config)
@@ -388,7 +388,7 @@ class TestAccountUTF8(Base2, TestAccount):
set_up = False
-class TestAccountNoContainersEnv:
+class TestAccountNoContainersEnv(object):
@classmethod
def setUp(cls):
cls.conn = Connection(config)
@@ -417,7 +417,7 @@ class TestAccountNoContainersUTF8(Base2, TestAccountNoContainers):
set_up = False
-class TestContainerEnv:
+class TestContainerEnv(object):
@classmethod
def setUp(cls):
cls.conn = Connection(config)
@@ -708,7 +708,7 @@ class TestContainerUTF8(Base2, TestContainer):
set_up = False
-class TestContainerPathsEnv:
+class TestContainerPathsEnv(object):
@classmethod
def setUp(cls):
raise SkipTest('Objects ending in / are not supported')
@@ -888,7 +888,7 @@ class TestContainerPaths(Base):
['dir1/subdir with spaces/file B'])
-class TestFileEnv:
+class TestFileEnv(object):
@classmethod
def setUp(cls):
cls.conn = Connection(config)