summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2018-06-22 16:23:57 -0700
committerTim Burke <tim.burke@gmail.com>2018-06-22 16:23:57 -0700
commit85bb28eab4fab97e834ebfd2ef29bb3f4fc9bf5f (patch)
treebbf493cedb48a1b14018b128230c78df8b0843db
parentae30659ce95e9eb1ffc0ca16a196cc2bdc93f2d9 (diff)
downloadpython-swiftclient-85bb28eab4fab97e834ebfd2ef29bb3f4fc9bf5f.tar.gz
Remove some pointless code
Change-Id: I3163834c330c5ea44c1096e83127588c88f0d761
-rw-r--r--tests/functional/test_swiftclient.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/functional/test_swiftclient.py b/tests/functional/test_swiftclient.py
index d60ae06..0380d96 100644
--- a/tests/functional/test_swiftclient.py
+++ b/tests/functional/test_swiftclient.py
@@ -485,9 +485,6 @@ class TestUsingKeystone(TestFunctional):
self.auth_url, username, password, auth_version=self.auth_version,
os_options=os_options)
- def setUp(self):
- super(TestUsingKeystone, self).setUp()
-
class TestUsingKeystoneV3(TestFunctional):
"""
@@ -514,6 +511,3 @@ class TestUsingKeystoneV3(TestFunctional):
return swiftclient.Connection(self.auth_url, username, password,
auth_version=self.auth_version,
os_options=os_options)
-
- def setUp(self):
- super(TestUsingKeystoneV3, self).setUp()