Fix minor typo in a test

This commit is contained in:
Alan Boudreault
2014-03-01 21:45:45 -05:00
parent ba6e61b907
commit 25948e3694

View File

@@ -156,8 +156,8 @@ class EmbargoMiddlewareTests(TestCase):
# Following the redirect should give us the embargo page
response = self.client.get(
self.embargoed_page,
HTTP_X_FORWARDED_FOR='5.0.0.0',
REMOTE_ADDR='1.0.0.0',
HTTP_X_FORWARDED_FOR='5.0.0.100',
REMOTE_ADDR='5.0.0.100',
follow=True
)
self.assertIn(self.embargo_text, response.content)