mirror of https://github.com/apache/cloudstack.git
test: use normal user for createing networks, vpcs (#6988)
When using admin=True in account creation with domain it creates a domain admin. It would be better to run tests as normal user. Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
87b25b94f5
commit
588287af17
|
|
@ -135,7 +135,7 @@ class TestIpv6Network(cloudstackTestCase):
|
|||
cls.account = Account.create(
|
||||
cls.apiclient,
|
||||
cls.services["account"],
|
||||
admin=True,
|
||||
admin=False,
|
||||
domainid=cls.domain.id
|
||||
)
|
||||
cls._cleanup.append(cls.account)
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ class TestIpv6Vpc(cloudstackTestCase):
|
|||
cls.account = Account.create(
|
||||
cls.apiclient,
|
||||
cls.services["account"],
|
||||
admin=True,
|
||||
admin=False,
|
||||
domainid=cls.domain.id
|
||||
)
|
||||
cls._cleanup.append(cls.account)
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ class TestIpv6Network(cloudstackTestCase):
|
|||
cls.account = Account.create(
|
||||
cls.apiclient,
|
||||
cls.services["account"],
|
||||
admin=True,
|
||||
admin=False,
|
||||
domainid=cls.domain.id
|
||||
)
|
||||
cls._cleanup.append(cls.account)
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ class TestIpv6Vpc(cloudstackTestCase):
|
|||
cls.account = Account.create(
|
||||
cls.apiclient,
|
||||
cls.services["account"],
|
||||
admin=True,
|
||||
admin=False,
|
||||
domainid=cls.domain.id
|
||||
)
|
||||
cls._cleanup.append(cls.account)
|
||||
|
|
|
|||
Loading…
Reference in New Issue