Skip to content

Commit

Permalink
[#2939] Fix lack of admin in test
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Oct 10, 2012
1 parent ee11e9e commit a6376a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ckan/tests/functional/test_group.py
Expand Up @@ -250,8 +250,9 @@ def test_read(self):
main_res = self.main_div(res)
assert title in res, res
#assert 'edit' not in main_res, main_res
assert 'Administrators' in res, res
assert 'russianfan' in main_res, main_res
# Administrator no longer exists for the group due to auth changes
# assert 'Administrators' in res, res
# assert 'russianfan' in main_res, main_res
assert name in res, res
no_datasets_found = int(re.search('(\d*) datasets found',
main_res).groups()[0])
Expand Down

0 comments on commit a6376a8

Please sign in to comment.