Skip to content

Commit

Permalink
flake8 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudi Giesler committed Mar 31, 2015
1 parent 529e318 commit 15567c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vumi_twilio_api/tests/test_twilio_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def test_make_call_required_parameters_to(self):
'From': '+12345', 'Url': url},
error={
'error_type': 'UsageError',
'error_message':
'error_message':
"Required field 'To' not supplied",
})

Expand All @@ -271,7 +271,7 @@ def test_make_call_required_parameters_from(self):
'To': '+12345', 'Url': url},
error={
'error_type': 'UsageError',
'error_message':
'error_message':
"Required field 'From' not supplied",
})

Expand All @@ -287,7 +287,7 @@ def test_make_call_required_parameters_url(self):
'To': '+12345', 'From': '+54321'},
error={
'error_type': 'UsageError',
'error_message':
'error_message':
"Request must have an 'Url' or an 'ApplicationSid' field",
})

Expand Down

0 comments on commit 15567c8

Please sign in to comment.