Skip to content

Commit

Permalink
[xs]: Fix Genshi test failure seen on newer machines - kindly and I h…
Browse files Browse the repository at this point in the history
…ad it.
  • Loading branch information
David Read committed May 17, 2012
1 parent 9ad1a39 commit cc30f06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ckan/tests/functional/test_user.py
Expand Up @@ -130,7 +130,10 @@ def test_user_read_about_spam2(self):
main_res = self.main_div(res)
assert 'spammer2' in res, res
assert 'spamsite2' not in res, res
assert 'Error: Could not parse About text' in res, res
# some computers have the Genshi exception and some insert "malformed"
# but either are fine
assert 'Error: Could not parse About text' in res or\
'malformed' in res, res

def test_user_login_page(self):
offset = url_for(controller='user', action='login', id=None)
Expand Down

0 comments on commit cc30f06

Please sign in to comment.