From b8e82a97b6bc342d868fa4589c2fc15e3a482b85 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Wed, 13 May 2015 11:12:09 +0530 Subject: [PATCH] CLOUDSTACK-8466: Fixed import error in testpath_snapshot_limits.py Signed-off-by: Gaurav Aradhye --- test/integration/testpaths/testpath_snapshot_limits.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/integration/testpaths/testpath_snapshot_limits.py b/test/integration/testpaths/testpath_snapshot_limits.py index 94d5e95c688..e30161dd4e5 100644 --- a/test/integration/testpaths/testpath_snapshot_limits.py +++ b/test/integration/testpaths/testpath_snapshot_limits.py @@ -34,7 +34,7 @@ from marvin.lib.common import (get_domain, get_template ) -from marvin.codes import (BACKEDUP, PASS, FAIL) +from marvin.codes import (BACKED_UP, PASS, FAIL) class TestStorageSnapshotsLimits(cloudstackTestCase): @@ -202,7 +202,7 @@ class TestStorageSnapshotsLimits(cloudstackTestCase): # Verify Snapshot state self.assertEqual( snapshots_list[0].state.lower() in [ - BACKEDUP, + BACKED_UP, ], True, "Snapshot state is not as expected. It is %s" % @@ -285,7 +285,7 @@ class TestStorageSnapshotsLimits(cloudstackTestCase): # Verify Snapshot state self.assertEqual( snapshots_list[0].state.lower() in [ - BACKEDUP, + BACKED_UP, ], True, "Snapshot state is not as expected. It is %s" % @@ -321,7 +321,7 @@ class TestStorageSnapshotsLimits(cloudstackTestCase): # Verify Snapshot state self.assertEqual( snapshots_list[0].state.lower() in [ - BACKEDUP, + BACKED_UP, ], True, "Snapshot state is not as expected. It is %s" %