summaryrefslogtreecommitdiffstats
path: root/test/functional/tests.py
diff options
context:
space:
mode:
authorPrashanth Pai <ppai@redhat.com>2014-03-12 16:54:30 +0530
committerLuis Pabon <lpabon@redhat.com>2014-03-13 05:09:19 -0700
commit2ccd2c4d969cdd6e7feedd21ac2e5cb8498ff37d (patch)
tree1886732cf56e26ab836f9fd67c853eff2005fbeb /test/functional/tests.py
parent1a6b55714fddf7a1b526a31ee3f27589f01e98e5 (diff)
Sync with OpenStack Swift v1.13.0
Also, bumped version of gluster-swift to v1.13.0 Change-Id: I797dc704c9523540cba847b1e8ff3da97b79630c Signed-off-by: Prashanth Pai <ppai@redhat.com> Reviewed-on: http://review.gluster.org/7229 Reviewed-by: Chetan Risbud <crisbud@redhat.com> Reviewed-by: Luis Pabon <lpabon@redhat.com> Tested-by: Luis Pabon <lpabon@redhat.com>
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)