Rename variable, it's a better name now.

This commit is contained in:
Rebecca Law
2021-02-17 13:15:29 +00:00
parent e77534fb17
commit 77b76ea0a4
5 changed files with 6 additions and 6 deletions

View File

@@ -329,7 +329,7 @@ def test_post_user_attribute_with_updated_by_sends_notification_to_international
assert resp.status_code == 200, resp.get_data(as_text=True)
notification = Notification.query.first()
assert notification.reply_to_text == current_app.config['NOTIFY_NUMBER_SMS_SENDER']
assert notification.reply_to_text == current_app.config['NOTIFY_INTERNATIONAL_SMS_SENDER']
def test_archive_user(mocker, client, sample_user):

View File

@@ -494,4 +494,4 @@ def test_send_user_2fa_code_sends_from_number_for_international_numbers(
assert resp.status_code == 204
notification = Notification.query.first()
assert notification.reply_to_text == current_app.config['NOTIFY_NUMBER_SMS_SENDER']
assert notification.reply_to_text == current_app.config['NOTIFY_INTERNATIONAL_SMS_SENDER']