Skip to content

Commit

Permalink
Trying to figure out what's wrong on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfinkels committed Jun 9, 2016
1 parent f9d3be0 commit 210fb68
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,8 @@ def test_create_absent(self):
"""
data = dict(data=dict(type='person'))
response = self.app.post('/api/person', data=dumps(data))
print(response)
print(response.data)
check_sole_error(response, 400, ['validation', 'email'])
# Check that the person was not created.
assert self.session.query(self.Person).count() == 0
Expand Down

0 comments on commit 210fb68

Please sign in to comment.