Fixing idention

This commit is contained in:
reverend 2021-05-16 13:03:46 +02:00
parent 5b9672e21e
commit 822a536ebe
1 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ class TestHomeView(GlobalTemplateTestCaseMixin, ViewTestCase):
self.assertGlobal(response)
def test_place_list_authenticated(self):
"""
"""
Testing there is the place list containing the name,
location and description of the latest place for
authenticated users.
@ -59,7 +59,7 @@ class TestHomeView(GlobalTemplateTestCaseMixin, ViewTestCase):
)
def test_place_list_unauthenticated(self):
"""
"""
Testing there is a place list of the lates places
containing the place names only for unauthenticated users.
"""
@ -82,7 +82,7 @@ class TestHomeView(GlobalTemplateTestCaseMixin, ViewTestCase):
)
def test_map_authenticated(self):
"""
"""
Testing there is a map showing all the lates places
on a map for authenticated users.
"""
@ -98,7 +98,7 @@ class TestHomeView(GlobalTemplateTestCaseMixin, ViewTestCase):
)
def test_map_unauthenticated(self):
"""
"""
Testing there is no map for unauthenticated users.
"""
response = self.client.get(reverse('lostplaces_home'))