summaryrefslogtreecommitdiffstats
path: root/tests/unit/test_authutils.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-28 07:57:04 +0000
committerGerrit Code Review <review@openstack.org>2013-01-28 07:57:04 +0000
commit03dd4e7d4eb751bfad58322600464852942d5af9 (patch)
tree71d4bbb19edf558406d07cd8a917a8ef8c74d0c0 /tests/unit/test_authutils.py
parent73c7cdc65f2c64f49139bbd2bb738635a34316e1 (diff)
parent8c80224ecb5194a5e2ed5f74f1c7f457202d21a3 (diff)
downloadoslo-03dd4e7d4eb751bfad58322600464852942d5af9.tar.gz
oslo-03dd4e7d4eb751bfad58322600464852942d5af9.tar.xz
oslo-03dd4e7d4eb751bfad58322600464852942d5af9.zip
Merge "Replace direct use of testtools BaseTestCase."
Diffstat (limited to 'tests/unit/test_authutils.py')
-rw-r--r--tests/unit/test_authutils.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/test_authutils.py b/tests/unit/test_authutils.py
index 64e241a..8c0a54c 100644
--- a/tests/unit/test_authutils.py
+++ b/tests/unit/test_authutils.py
@@ -15,12 +15,11 @@
# License for the specific language governing permissions and limitations
# under the License.
-import testtools
-
from openstack.common import authutils
+from tests import utils
-class AuthUtilsTest(testtools.TestCase):
+class AuthUtilsTest(utils.BaseTestCase):
def test_auth_str_equal(self):
self.assertTrue(authutils.auth_str_equal('abc123', 'abc123'))