Skip to content

Commit

Permalink
[#1682] Fix pep8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelb authored and amercader committed Oct 3, 2014
1 parent ce6bbdc commit fd4139b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ckan/new_tests/controllers/test_group.py
Expand Up @@ -18,6 +18,6 @@ def setup(self):

def test_bulk_process_throws_404_for_nonexistent_org(self):
app = self._get_test_app()
response = app.get(url=url_for(controller='organization',
action='bulk_process', id='does-not-exist'),
status=404)
bulk_process_url = url_for(controller='organization',
action='bulk_process', id='does-not-exist')
response = app.get(url=bulk_process_url, status=404)

0 comments on commit fd4139b

Please sign in to comment.