Updated Branches: refs/heads/master 55c384651 -> 218d26be6
Adding the 'advanced' attribute for test_public_ip_range Fixing typo in class name. Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/218d26be Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/218d26be Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/218d26be Branch: refs/heads/master Commit: 218d26be60a556dccd0a40499a04901f2ac4adc1 Parents: 55c3846 Author: Prasanna Santhanam <[email protected]> Authored: Tue May 21 12:03:27 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Tue May 21 12:04:03 2013 +0530 ---------------------------------------------------------------------- test/integration/smoke/test_public_ip_range.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/218d26be/test/integration/smoke/test_public_ip_range.py ---------------------------------------------------------------------- diff --git a/test/integration/smoke/test_public_ip_range.py b/test/integration/smoke/test_public_ip_range.py index f2099ff..e1d78d9 100644 --- a/test/integration/smoke/test_public_ip_range.py +++ b/test/integration/smoke/test_public_ip_range.py @@ -52,11 +52,11 @@ class Services: "vlan": "4444", } -class TesDedicatePublicIPRange(cloudstackTestCase): +class TestDedicatePublicIPRange(cloudstackTestCase): @classmethod def setUpClass(cls): - cls.api_client = super(TesDedicatePublicIPRange, cls).getClsTestClient().getApiClient() + cls.api_client = super(TestDedicatePublicIPRange, cls).getClsTestClient().getApiClient() cls.services = Services().services # Get Zone, Domain cls.domain = get_domain(cls.api_client, cls.services) @@ -96,7 +96,7 @@ class TesDedicatePublicIPRange(cloudstackTestCase): raise Exception("Warning: Exception during cleanup : %s" % e) return - @attr(tags = ["simulator", "publiciprange", "dedicate", "release"]) + @attr(tags = ["simulator", "advanced", "publiciprange", "dedicate", "release"]) def test_dedicatePublicIpRange(self): """Test public IP range dedication """
