From 156ccaecc104f18fa4815eadd520681faab46c38 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Wed, 24 Jul 2013 11:35:04 -0400 Subject: [PATCH] Attempting a fix to get tests to pass with travis. Very odd... --- tests/functional_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/functional_tests.py b/tests/functional_tests.py index a23ff64..85087e2 100644 --- a/tests/functional_tests.py +++ b/tests/functional_tests.py @@ -59,6 +59,7 @@ class DefaultSecurityTests(SecurityTest): self.assertIsHomePage(r.data) def test_unauthorized_access(self): + self.logout() r = self._get('/profile', follow_redirects=True) self.assertIn('
  • Please log in to access this page.
  • ', r.data)