Replaces uuid.uuid4 with uuidutils.generate_uuid()

Change-Id: I7641164116020a835580f8dbfd07a622a3cbab40
This commit is contained in:
Sharat Sharma 2017-02-16 21:57:11 +05:30
parent 1330ce647d
commit bf4bbbd0d5
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,6 @@ inline callbacks.
import os
import shutil
import uuid
import fixtures
import mock
@ -41,6 +40,7 @@ from meteos import rpc
from meteos import service
from meteos.tests import conf_fixture
from meteos.tests import fake_notifier
from oslo_utils import uuidutils
test_opts = [
cfg.StrOpt('sqlite_clean_db',
@ -177,7 +177,7 @@ class TestCase(base_test.BaseTestCase):
CONF.set_override(k, v, enforce_type=True)
def start_service(self, name, host=None, **kwargs):
host = host and host or uuid.uuid4().hex
host = host and host or uuidutils.generate_uuid().hex
kwargs.setdefault('host', host)
kwargs.setdefault('binary', 'meteos-%s' % name)
svc = service.Service.create(**kwargs)