# HG changeset patch # User Mads Kiilerich # Date 1528839041 -7200 # Node ID b22501293b304bc64a90ff9f4a2d38f4a0a20441 # Parent 99cd328da2a1ffbc5159bdb87ec39763c3f3eaad tests: fix reference to edit_repo_perms_update - it is actually edit_repo_perms_revoke, even though they have the same value (but different method) diff -r 99cd328da2a1 -r b22501293b30 kallithea/tests/functional/test_admin_permissions.py --- a/kallithea/tests/functional/test_admin_permissions.py Mon Jun 11 21:43:03 2018 +0200 +++ b/kallithea/tests/functional/test_admin_permissions.py Tue Jun 12 23:30:41 2018 +0200 @@ -72,7 +72,7 @@ _authentication_token=self.authentication_token()), status=302) - assert response.location.endswith(url('login_home', came_from=url('edit_repo_perms_update', repo_name=HG_REPO))) + assert response.location.endswith(url('login_home', came_from=url('edit_repo_perms_revoke', repo_name=HG_REPO))) # Test authenticated access self.log_user()