Merge pull request #263 from alphagov/error-handling

Fix bug in error handlers.
This commit is contained in:
Rebecca Law
2016-03-11 10:52:53 +00:00
5 changed files with 13 additions and 10 deletions

View File

@@ -257,4 +257,4 @@ def test_new_invited_user_verifies_and_added_to_service(app_,
assert service_link == '/services/{}/dashboard'.format(service_one['id'])
flash_banner = page.find('div', class_='banner-default-with-tick').string.strip()
assert flash_banner == 'You have sucessfully accepted your invitation and been added to Test Service'
assert flash_banner == 'You have successfully accepted your invitation and been added to Test Service'

View File

@@ -19,8 +19,6 @@ def test_sign_out_user(app_,
mock_login,
mock_get_jobs):
with app_.test_request_context():
email = 'valid@example.gov.uk'
password = 'val1dPassw0rd!'
with app_.test_client() as client:
client.login(api_user_active)
with client.session_transaction() as session: