Repository: cloudstack Updated Branches: refs/heads/master 8cf1102b0 -> b12207cf2
CLOUDSTACK-7891 - Fix failure in integration.component.test_escalations_instances.TestInstances/test_15_revert_vm_to_snapshot Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b12207cf Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b12207cf Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b12207cf Branch: refs/heads/master Commit: b12207cf253d8a86e57118575eede98efee9e569 Parents: 8cf1102 Author: Sangeetha Hariharan <[email protected]> Authored: Wed Nov 12 16:51:52 2014 -0800 Committer: Sangeetha Hariharan <[email protected]> Committed: Wed Nov 12 17:11:44 2014 -0800 ---------------------------------------------------------------------- test/integration/component/test_escalations_instances.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b12207cf/test/integration/component/test_escalations_instances.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_escalations_instances.py b/test/integration/component/test_escalations_instances.py index 7e4cfe6..fd25bb9 100644 --- a/test/integration/component/test_escalations_instances.py +++ b/test/integration/component/test_escalations_instances.py @@ -2588,6 +2588,10 @@ class TestInstances(cloudstackTestCase): current_snapshot.id, "Latest snapshot taken is not marked as current" ) + + # Stop Virtual machine befor reverting VM to a snapshot taken without memory + vm_created.stop(self.userapiclient) + # Reverting the VM to Snapshot 1 VmSnapshot.revertToSnapshot( self.userapiclient,
