From 41b871b6bdfd48f673e1fdc011069dd3c7ca032b Mon Sep 17 00:00:00 2001 From: Chandan Purushothama Date: Tue, 2 Dec 2014 14:37:11 -0800 Subject: [PATCH] CLOUDSTACK-8007: Fixed the script 'test_vm_passwdenabled.py' - Template created by Admin should have public access to be used for regular User VM Deployment --- test/integration/component/test_vm_passwdenabled.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/integration/component/test_vm_passwdenabled.py b/test/integration/component/test_vm_passwdenabled.py index 1b556da298d..d998ed58236 100644 --- a/test/integration/component/test_vm_passwdenabled.py +++ b/test/integration/component/test_vm_passwdenabled.py @@ -199,13 +199,12 @@ class TestVMPasswordEnabled(cloudstackTestCase): cls.virtual_machine.id) cls.services["template"]["ostype"] = cls.services["ostype"] + cls.services["template"]["ispublic"] = True #Create templates for Edit, Delete & update permissions testcases cls.pw_enabled_template = Template.create( cls.api_client, cls.services["template"], cls.volume.id, - account=cls.account.name, - domainid=cls.account.domainid ) # Delete the VM - No longer needed cls.virtual_machine.delete(cls.api_client, expunge=True)