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:
Abhishek Kumar 2022-12-19 15:49:56 +05:30 committed by GitHub
parent 87b25b94f5
commit 588287af17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)