# HG changeset patch # User Mads Kiilerich # Date 2017-11-27 03:50:03 # Node ID 0ca92e5657cc6d74b110f7e779d7111bd37d7905 # Parent 1fa33126ed25438a9aacad81661752edc5fecbfe tests: fix test_users_and_groups_data - it seems to have been broken since it was introduced in 6c3bda995a88 ... or some dependency update made it fail diff --git a/kallithea/tests/functional/test_home.py b/kallithea/tests/functional/test_home.py --- a/kallithea/tests/functional/test_home.py +++ b/kallithea/tests/functional/test_home.py @@ -66,6 +66,7 @@ class TestHomeController(TestController) Session().commit() def test_users_and_groups_data(self): + self.log_user() fixture.create_user('evil', firstname=u'D\'o\'ct"o"r', lastname=u'Évíl') fixture.create_user_group(u'grrrr', user_group_description=u"Groüp") response = self.app.get(url('users_and_groups_data', query=u'evi'))