Skip to content
Snippets Groups Projects
Commit c089fc70 authored by Branson Craig Stephens's avatar Branson Craig Stephens
Browse files

Updated perms test to remove anon access to search form test.

parent b140d15d
No related branches found
No related tags found
No related merge requests found
......@@ -253,9 +253,10 @@ class TestPerms(TestCase):
self.assertEqual(response.status_code, 200)
# Check that the search form can be accessed anonymously.
def test_search_form_access(self):
response = self.client.get('/events/search/')
self.assertEqual(response.status_code, 200)
# XXX Actually, we don't want this right now.
# def test_search_form_access(self):
# response = self.client.get('/events/search/')
# self.assertEqual(response.status_code, 200)
# Test viewing of events by public users
def test_public_event_access(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment