Lints.
This commit is contained in:
parent
1433f28846
commit
f37bad0e00
260 changed files with 6363 additions and 3766 deletions
|
|
@ -16,10 +16,11 @@ def test_iam_server_get():
|
|||
backend = server.create_backend_app("iam")
|
||||
test_client = backend.test_client()
|
||||
|
||||
group_data = test_client.action_data("CreateGroup", GroupName="test group", Path="/")
|
||||
group_data = test_client.action_data(
|
||||
"CreateGroup", GroupName="test group", Path="/")
|
||||
group_id = re.search("<GroupId>(.*)</GroupId>", group_data).groups()[0]
|
||||
|
||||
groups_data = test_client.action_data("ListGroups")
|
||||
groups_ids = re.findall("<GroupId>(.*)</GroupId>", groups_data)
|
||||
|
||||
assert group_id in groups_ids
|
||||
assert group_id in groups_ids
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue