Skip to content

Commit 54fc7bf

Browse files
committed
chore: type tag idp user tests
1 parent a025dc2 commit 54fc7bf

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
@@ -235,7 +235,7 @@ def test_get_users_from_file(self):
235235
assert users[0].name == "Cassie", users
236236
assert failures == []
237237

238-
def test_add_user_idp_configuration(self):
238+
def test_add_user_idp_configuration(self) -> None:
239239
with open(ADD_XML) as f:
240240
response_xml = f.read()
241241
user = TSC.UserItem(name="Cassie", site_role="Viewer", auth_setting="ServerDefault")
@@ -252,7 +252,7 @@ def test_add_user_idp_configuration(self):
252252
assert user_elem is not None
253253
assert user_elem.attrib["idpConfigurationId"] == "012345"
254254

255-
def test_update_user_idp_configuration(self):
255+
def test_update_user_idp_configuration(self) -> None:
256256
with open(ADD_XML) as f:
257257
response_xml = f.read()
258258
user = TSC.UserItem(name="Cassie", site_role="Viewer", auth_setting="ServerDefault")

0 commit comments

Comments
 (0)