Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test for GraphRbac and Autorest 3.x
  • Loading branch information
lmazuel committed Aug 31, 2018
commit 7c6f69fa73ad82ffd34c7d71a72ae59f20993e9c
3 changes: 2 additions & 1 deletion azure-graphrbac/tests/test_graphrbac.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def test_graphrbac_users(self):
def test_groups(self):

group_create_parameters = azure.graphrbac.models.GroupCreateParameters(
"pytestgroup_display", "pytestgroup_nickname"
display_name="pytestgroup_display",
mail_nickname="pytestgroup_nickname"
)
group = self.graphrbac_client.groups.create(group_create_parameters)
self.assertEqual(group.display_name, "pytestgroup_display")
Expand Down