diff options
author | Eric Fried <efried@us.ibm.com> | 2018-09-05 09:08:54 -0500 |
---|---|---|
committer | Eric Fried <efried@us.ibm.com> | 2018-09-05 09:08:54 -0500 |
commit | 8e1ca5bf34f924b9a23ddbcf31ae727a7dcacb20 (patch) | |
tree | 6f66cb4b700db568c1b8c4ae304943c9611d06fe /nova/tests/unit/objects/test_selection.py | |
parent | 0f102089dd0b27c7d35f0cbba87332414032c0a4 (diff) | |
download | nova-8e1ca5bf34f924b9a23ddbcf31ae727a7dcacb20.tar.gz |
Use uuidsentinel from oslo.utils
oslo.utils release 3.37.0 [1] introduced uuidsentinel [2]. This change
rips out nova's uuidsentinel and replaces it with the one from
oslo.utils.
[1] https://review.openstack.org/#/c/599754/
[2] https://review.openstack.org/#/c/594179/
Change-Id: I7f5f08691ca3f73073c66c29dddb996fb2c2b266
Depends-On: https://review.openstack.org/600041
Diffstat (limited to 'nova/tests/unit/objects/test_selection.py')
-rw-r--r-- | nova/tests/unit/objects/test_selection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/unit/objects/test_selection.py b/nova/tests/unit/objects/test_selection.py index afef9c1a67..b99995c9ab 100644 --- a/nova/tests/unit/objects/test_selection.py +++ b/nova/tests/unit/objects/test_selection.py @@ -11,12 +11,12 @@ # under the License. from oslo_serialization import jsonutils +from oslo_utils.fixture import uuidsentinel as uuids from nova import objects from nova.objects import numa from nova.scheduler import host_manager from nova.tests.unit.objects import test_objects -from nova.tests import uuidsentinel as uuids fake_numa_limit1 = numa.NUMATopologyLimits(cpu_allocation_ratio=1.0, |