From 4374a180dd2f40a0aae016dc07cee7fa761792b3 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 30 Apr 2012 11:28:28 +0100 Subject: Remove unnecessary references to resize_confirm_window flag The value of the resize_confirm_window flag is passed into the poll_unconfirmed_resizes() method so there is no need to reference FLAGS.resize_confirm_window directly for logging. Change-Id: Ia9729cda4bf4408c2f5fce19709e9bdb474ad721 --- nova/tests/test_xenapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/tests') diff --git a/nova/tests/test_xenapi.py b/nova/tests/test_xenapi.py index e513ca0fb..56554c615 100644 --- a/nova/tests/test_xenapi.py +++ b/nova/tests/test_xenapi.py @@ -920,7 +920,7 @@ class XenAPIMigrateInstance(test.TestCase): db.migration_get_all_unconfirmed(fake_context, resize_confirm_window).AndReturn(migrations) # Found unconfirmed migrations message - vmops.LOG.info(mox.IgnoreArg(), mox.IgnoreArg()) + vmops.LOG.info(mox.IgnoreArg()) # test success (ACTIVE/RESIZE_VERIFY) instance = instances.pop(0) -- cgit