GeneralConfigTest: Fix wrong config parameter name

The inheritedExemptedUsersCanBeRemovedOnProjectLevel test is supposed to
verify that exempted users that are configured in gerrit.config can be
removed. However since the config paramater name was wrong there were no
exempted users configured in gerrit.config and hence this test failed to
do the verification it was supposed to do.

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: Iedc46ae82e4a369f5582504c6cc00f1ab0e6bae2
diff --git a/javatests/com/google/gerrit/plugins/codeowners/backend/config/GeneralConfigTest.java b/javatests/com/google/gerrit/plugins/codeowners/backend/config/GeneralConfigTest.java
index be65c1f..aed1651 100644
--- a/javatests/com/google/gerrit/plugins/codeowners/backend/config/GeneralConfigTest.java
+++ b/javatests/com/google/gerrit/plugins/codeowners/backend/config/GeneralConfigTest.java
@@ -1411,7 +1411,7 @@
 
   @Test
   @GerritConfig(
-      name = "plugin.code-owners.exemptedUsers",
+      name = "plugin.code-owners.exemptedUser",
       values = {"bot1@example.com", "bot2@example.com"})
   public void inheritedExemptedUsersCanBeRemovedOnProjectLevel() throws Exception {
     Config cfg = new Config();