Standardize ordering of AbstractDaemonTest#block/deny/allow arguments

The new standard ordering is (project, ref, permission, [force], ID)

Change-Id: I20387e5349218322ecd8fd5529532d9a9ae57b0d
This commit is contained in:
Han-Wen Nienhuys
2017-05-16 18:43:53 +02:00
committed by David Pursehouse
parent d4f898d405
commit ae0c04cf5c
27 changed files with 106 additions and 107 deletions

View File

@@ -28,7 +28,7 @@ public class DraftChangeBlockedIT extends AbstractDaemonTest {
@Before
public void setUp() throws Exception {
block(Permission.PUSH, ANONYMOUS_USERS, "refs/drafts/*");
block("refs/drafts/*", Permission.PUSH, ANONYMOUS_USERS);
}
@Test