Skip to content

Commit

Permalink
Fix pep8 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoranPandovski committed Feb 1, 2018
1 parent 1498e00 commit ed6ad18
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ckanext/requestdata/tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
eq_ = nose.tools.eq_
raises = nose.tools.raises
assert_equals = nose.tools.assert_equals
assert_not_equal = nose.tools.assert_not_equal

assert_not_equal = nose.tools.assert_not_equal


class ActionBase(object):
Expand Down Expand Up @@ -78,14 +77,14 @@ def test_group_archived_requests_valid(self):
'requests_archived': 'r',
'shared': '',
'requests': 'r'
},{
}, {
'package_id': id3,
'title': 'test3',
'maintainers': '',
'requests_archived': '',
'shared': '',
'requests': ''
},{
}, {
'package_id': id2,
'title': 'test2',
'maintainers': 't',
Expand All @@ -98,5 +97,3 @@ def test_group_archived_requests_valid(self):
assert_equals(res[0]['package_id'], id2)
assert_equals(res[1]['package_id'], id3)
assert_equals(res[2]['package_id'], id55)


0 comments on commit ed6ad18

Please sign in to comment.