Skip to content

Commit a7030f3

Browse files
committed
fix: remove auth_setting from idp tests
1 parent 04667f3 commit a7030f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def test_get_users_from_file(self):
254254
def test_add_user_idp_configuration(self) -> None:
255255
with open(ADD_XML) as f:
256256
response_xml = f.read()
257-
user = TSC.UserItem(name="Cassie", site_role="Viewer", auth_setting="ServerDefault")
257+
user = TSC.UserItem(name="Cassie", site_role="Viewer")
258258
user.idp_configuration_id = "012345"
259259

260260
with requests_mock.mock() as m:
@@ -271,7 +271,7 @@ def test_add_user_idp_configuration(self) -> None:
271271
def test_update_user_idp_configuration(self) -> None:
272272
with open(ADD_XML) as f:
273273
response_xml = f.read()
274-
user = TSC.UserItem(name="Cassie", site_role="Viewer", auth_setting="ServerDefault")
274+
user = TSC.UserItem(name="Cassie", site_role="Viewer")
275275
user._id = "0123456789"
276276
user.idp_configuration_id = "012345"
277277

0 commit comments

Comments
 (0)