Update json module to jsonutils

oslo project provide jsonutils, and the others use it in many place,
this PS to update the json moudule to oslo jsonutils for consistency.

Change-Id: I3502f8f9e15cfc718f6665fb1c4f350e0cb05c0e
This commit is contained in:
cao.yuan 2019-02-24 22:41:02 +08:00 committed by caoyuan
parent 42f113e69e
commit 5e8c251b81
6 changed files with 11 additions and 6 deletions

View File

@ -13,9 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import json
import os
from oslo_serialization import jsonutils as json
import requests
from tempest import config
from tempest.lib.common import rest_client

View File

@ -13,9 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import json
import os
from oslo_serialization import jsonutils as json
from tempest import config
from tempest.lib.common import rest_client

View File

@ -14,7 +14,8 @@
# under the License.
import base64
import json
from oslo_serialization import jsonutils as json
from tempest import config
from tempest.lib.common import rest_client

View File

@ -13,9 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import json
import time
from oslo_serialization import jsonutils as json
from tempest.common import credentials_factory as common_creds
from tempest import config
from tempest.lib import exceptions

View File

@ -13,9 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import json
import os
from oslo_serialization import jsonutils as json
from tempest.lib import decorators
from murano_tempest_tests.tests.api.service_broker import base

View File

@ -14,7 +14,6 @@
import collections
import contextlib
import json
import os
import random
import socket
@ -28,6 +27,7 @@ from muranoclient import client as mclient
import muranoclient.common.exceptions as exceptions
from muranoclient.glance import client as glare_client
from oslo_log import log as logging
from oslo_serialization import jsonutils as json
from tempest import config
import yaml