Skip to content

Commit

Permalink
Fix wrong httpbin test failure 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
amitt001 committed Dec 8, 2018
1 parent c532110 commit 413d2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_already_shortened_url_error(self):

def test_unshorten(self):
data = self.data
data['long_url'] = 'http://httpbin.com/'
data['long_url'] = 'https://github.com'
response = requests.post(self.url + '/shorten', data=data, headers=self.headers)
self.assertEqual(response.status_code, 200)
short_url = self._get_short_url_from_response(response)
Expand Down

0 comments on commit 413d2eb

Please sign in to comment.