2767 passing

This commit is contained in:
jimmoffet
2022-08-05 00:25:03 -07:00
parent f48872b4cc
commit dad051a662
71 changed files with 497 additions and 374 deletions

View File

@@ -18,7 +18,7 @@ def test_anonymous_user(notify_admin):
def test_user(notify_admin):
user_data = {'id': 1,
'name': 'Test User',
'email_address': 'test@user.gov.uk',
'email_address': 'test@user.gsa.gov',
'mobile_number': '+4412341234',
'state': 'pending',
'failed_login_count': 0,
@@ -28,7 +28,7 @@ def test_user(notify_admin):
assert user.id == 1
assert user.name == 'Test User'
assert user.email_address == 'test@user.gov.uk'
assert user.email_address == 'test@user.gsa.gov'
assert user.mobile_number == '+4412341234'
assert user.state == 'pending'