Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sqozz committed Jun 9, 2018
1 parent 7def769 commit 810f922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_empty_url(self):
req = requests.post(BASE_URL + "/", data={"url": ""})
self.assertEqual(req.status_code, 400, msg="Could not handle a request with empty url")
req = requests.post(BASE_URL + "/", data={})
self.assertEqual(req.status_code, 400, msg="Could not handle a request with url at all")
self.assertEqual(req.status_code, 400, msg="Could not handle a request without a url at all")


class SchortShortLinkCase(object):
Expand Down

0 comments on commit 810f922

Please sign in to comment.