oncall-engine/tools/migrators/lib/tests/common/resources/test_user.py

10 lines
279 B
Python
Raw Permalink Normal View History

from lib.common.resources.users import match_user
def test_match_user_email_case_insensitive():
pd_user = {"email": "test@test.com"}
oncall_users = [{"email": "TEST@TEST.COM"}]
match_user(pd_user, oncall_users)
assert pd_user["oncall_user"] == oncall_users[0]