Skip to content

Commit

Permalink
Actually managed correct indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
KaitlynKeil committed May 5, 2018
1 parent 0a26c49 commit 21d6071
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_email_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ def test_error_reply(self, smtp):
@patch('abe.helper_functions.email_helpers.smtp_connect', return_value=(serv, 'from_addr'))
def test_reply_email(self, smtp):
event_dict = {'title': 'Test',
'start': '2018-04-30 14:51:24',
'end': '2018-04-30 14:51:24',
'labels': ['test'],
'description': 'empty test',
'id': 'id_string'}
'start': '2018-04-30 14:51:24',
'end': '2018-04-30 14:51:24',
'labels': ['test'],
'description': 'empty test',
'id': 'id_string'}
to = "to_addr"
email_helpers.reply_email(to, event_dict)
smtp.assert_called()
Expand Down

0 comments on commit 21d6071

Please sign in to comment.