From a84c35d0830f68553cf9c814f7ae2eccf04b84e8 Mon Sep 17 00:00:00 2001 From: Matt Dietz Date: Mon, 30 Jul 2012 19:27:52 +0000 Subject: Reverts fix lp1031004 The fix was incorrectly applied to the resize.end event. There was a miscommunication about the resize.end versus resize.finish event Change-Id: I301b46bbb7684d70946a426ce371eaf1198b97df --- nova/tests/compute/test_compute.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nova/tests') diff --git a/nova/tests/compute/test_compute.py b/nova/tests/compute/test_compute.py index 848376da1..c5913d9d3 100644 --- a/nova/tests/compute/test_compute.py +++ b/nova/tests/compute/test_compute.py @@ -1,4 +1,4 @@ -# vim: tabstop=5 shiftwidth=4 softtabstop=4 +# vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. @@ -1208,7 +1208,7 @@ class ComputeTestCase(BaseTestCase): migration_id=int(migration_ref['id']), disk_info={}, image={}, instance=instance) - self.assertEquals(len(test_notifier.NOTIFICATIONS), 3) + self.assertEquals(len(test_notifier.NOTIFICATIONS), 2) msg = test_notifier.NOTIFICATIONS[0] self.assertEquals(msg['event_type'], 'compute.instance.finish_resize.start') -- cgit