Skip to content

Commit ab7ab8c

Browse files
committed
chore: type tag idp user tests
1 parent 9ce61e2 commit ab7ab8c

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
@@ -251,7 +251,7 @@ def test_get_users_from_file(self):
251251
assert users[0].name == "Cassie", users
252252
assert failures == []
253253

254-
def test_add_user_idp_configuration(self):
254+
def test_add_user_idp_configuration(self) -> None:
255255
with open(ADD_XML) as f:
256256
response_xml = f.read()
257257
user = TSC.UserItem(name="Cassie", site_role="Viewer", auth_setting="ServerDefault")
@@ -268,7 +268,7 @@ def test_add_user_idp_configuration(self):
268268
assert user_elem is not None
269269
assert user_elem.attrib["idpConfigurationId"] == "012345"
270270

271-
def test_update_user_idp_configuration(self):
271+
def test_update_user_idp_configuration(self) -> None:
272272
with open(ADD_XML) as f:
273273
response_xml = f.read()
274274
user = TSC.UserItem(name="Cassie", site_role="Viewer", auth_setting="ServerDefault")

0 commit comments

Comments
 (0)