summaryrefslogtreecommitdiff
path: root/nova/tests/unit/conductor/test_conductor.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/tests/unit/conductor/test_conductor.py')
-rw-r--r--nova/tests/unit/conductor/test_conductor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/unit/conductor/test_conductor.py b/nova/tests/unit/conductor/test_conductor.py
index cc550934fa..2490c35b8c 100644
--- a/nova/tests/unit/conductor/test_conductor.py
+++ b/nova/tests/unit/conductor/test_conductor.py
@@ -1479,9 +1479,9 @@ class ConductorTaskTestCase(_BaseTaskTestCase, test_compute.BaseTestCase):
# NOTE(danms): Assert that we created the InstanceAction in the
# correct cell
for cell in cells:
- with context.target_cell(self.context, cell):
+ with context.target_cell(self.context, cell) as cctxt:
actions = objects.InstanceActionList.get_by_instance_uuid(
- self.context, instance_uuid)
+ cctxt, instance_uuid)
if cell.name == 'cell1':
self.assertEqual(1, len(actions))
else: