summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-03-06 22:22:52 +0000
committerGerrit Code Review <review@openstack.org>2013-03-06 22:22:52 +0000
commit8eee9613d828d93cbc69070dc4017e1ef463dec4 (patch)
tree9ec2fc4d591984f214e2481db6860ae7120bf8e9 /tests
parent072458d3476f65c0d0e91305a4c1a0c6dbb8da1a (diff)
parent35e01f5206bfa284b5e3add76aac90f879f42e5c (diff)
downloadpython-troveclient-0.1.2.alpha1.tar.gz
Merge "Fixes data type bug in get-user call"0.1.2.alpha1
Diffstat (limited to 'tests')
-rw-r--r--tests/test_auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py
index 58b0b93..f1c4b59 100644
--- a/tests/test_auth.py
+++ b/tests/test_auth.py
@@ -400,7 +400,7 @@ class ServiceCatalogTest(TestCase):
scObj.catalog[scObj.root_key]['serviceCatalog'] = [service1]
self.assertRaises(exceptions.EndpointNotFound, scObj._url_for)
- scObj.service_type = "reddwarf"
+ scObj.service_type = "database"
scObj.service_name = "no_match"
self.assertRaises(exceptions.EndpointNotFound, scObj._url_for)