We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
id
1 parent 821de4b commit cd37714Copy full SHA for cd37714
tests/integration/account/test_account.py
@@ -63,10 +63,9 @@ def test_create_account_level_groups(
63
group_display_name = f"created_by_ucx_regular_group-{suffix}"
64
# Create a group with a user and a service principal as members
65
# to test the account level groups creation.
66
- # TODO: remove protected access to service principal id once added in pytester
67
ws_group = make_group(
68
display_name=group_display_name,
69
- members=[make_user().id, make_run_as()._service_principal.id], # pylint: disable=protected-access
+ members=[make_user().id, make_run_as().id],
70
)
71
AccountWorkspaces(acc, [ws.get_workspace_id()]).create_account_level_groups(MockPrompts({}))
72
0 commit comments