Add REST API bindings test for listing checkers

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I889acb5e39b5bcaa76d4184b71b0785da41f11de
diff --git a/javatests/com/google/gerrit/plugins/checks/acceptance/ChecksRestApiBindingsIT.java b/javatests/com/google/gerrit/plugins/checks/acceptance/ChecksRestApiBindingsIT.java
index c492426..0285798 100644
--- a/javatests/com/google/gerrit/plugins/checks/acceptance/ChecksRestApiBindingsIT.java
+++ b/javatests/com/google/gerrit/plugins/checks/acceptance/ChecksRestApiBindingsIT.java
@@ -26,6 +26,7 @@
 public class ChecksRestApiBindingsIT extends AbstractCheckersTest {
   private static final ImmutableList<RestCall> ROOT_ENDPOINTS =
       ImmutableList.of(
+          RestCall.get("/plugins/checks/checkers/"),
           RestCall.post("/plugins/checks/checkers/"),
           RestCall.get("/plugins/checks/checks.pending/"));