Skip to content

Commit

Permalink
[Pep8] Fix flake8 issues
Browse files Browse the repository at this point in the history
(cherry picked from commit 084c56e)
  • Loading branch information
afabiani committed Dec 1, 2021
1 parent 89e89c9 commit e5c36e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/services/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ def test_local_user_cant_delete_service(self):
self.assertEqual(s.description, 'Foo Description')
self.assertEqual(s.abstract, 'Foo Abstract')
self.assertEqual(['Foo', 'OWS', 'Service'],
list(s.keywords.all().values_list('name', flat=True)))
list(s.keywords.all().values_list('name', flat=True)))
response = self.client.post(reverse('remove_service', args=(s.id,)))
self.assertEqual(len(Service.objects.all()), 0)

Expand Down

0 comments on commit e5c36e8

Please sign in to comment.