From c918cd2008160a70451aae256a9de6f314de0a30 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 15 2018 08:08:56 +0000 Subject: Fix newly added git hook Signed-off-by: Pierre-Yves Chibon --- diff --git a/tests/test_pagure_flask_ui_plugins.py b/tests/test_pagure_flask_ui_plugins.py index 9cf5e79..7adcf69 100644 --- a/tests/test_pagure_flask_ui_plugins.py +++ b/tests/test_pagure_flask_ui_plugins.py @@ -45,9 +45,17 @@ class PagureFlaskPluginstests(tests.SimplePagureTest): self.assertEqual( sorted(names), [ - 'Block Un-Signed commits', 'Block non fast-forward pushes', - 'Fedmsg', 'IRC', 'Mail', 'Pagure', 'Pagure CI', - 'Pagure requests', 'Pagure tickets', 'Read the Doc', + 'Block Un-Signed commits', + 'Block non fast-forward pushes', + 'Fedmsg', + 'IRC', + 'Mail', + 'Pagure', + 'Pagure CI', + 'Pagure requests', + 'Pagure tickets', + 'Prevent creating new branches by git push', + 'Read the Doc', ] )