summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2015-05-26 17:40:01 -0400
committerSteve Martinelli <stevemar@ca.ibm.com>2015-05-26 17:40:01 -0400
commit575dcdfc8ef6d24ecb75663eb94d549a8beb30fe (patch)
treed860cae046f7d78b5736145cd2bd00bb9580fb97 /openstackclient
parente72d35031610cb96dcd619e60c13e35fc92325d0 (diff)
downloadpython-openstackclient-575dcdfc8ef6d24ecb75663eb94d549a8beb30fe.tar.gz
Remove oslo serialization requirement
Recently oslo serialization has started to also include python-msgpack. Since we were only using it for json support, we should just use python's json support. Especially since it's only used by our tests. Change-Id: I0f8d939d6fca7608eaa3eea7ea4ca93296aaab3a
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/tests/common/test_clientmanager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/tests/common/test_clientmanager.py b/openstackclient/tests/common/test_clientmanager.py
index 26cf4967..4e2f46b4 100644
--- a/openstackclient/tests/common/test_clientmanager.py
+++ b/openstackclient/tests/common/test_clientmanager.py
@@ -12,12 +12,13 @@
# License for the specific language governing permissions and limitations
# under the License.
#
+
+import json as jsonutils
import mock
from requests_mock.contrib import fixture
from keystoneclient.auth.identity import v2 as auth_v2
from keystoneclient import service_catalog
-from oslo_serialization import jsonutils
from openstackclient.api import auth
from openstackclient.api import auth_plugin