diff --git a/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java b/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java index 926d3946c..7b3120fe7 100644 --- a/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java +++ b/src/test/java/org/kohsuke/github/GHVerificationReasonTest.java @@ -8,7 +8,7 @@ import org.junit.Test; public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { // Issue 737 @Test - public void testExpiredKeyVerification() throws Exception { + public void testExpiredKey() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -17,7 +17,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testNotSigningKeyVerification() throws Exception { + public void testNotSigningKey() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f02"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -26,7 +26,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testGpgverifyErrorVerification() throws Exception { + public void testGpgverifyError() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f03"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -35,7 +35,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testGpgverifyUnavailableVerification() throws Exception { + public void testGpgverifyUnavailable() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f04"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -45,7 +45,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testUnsignedVerification() throws Exception { + public void testUnsigned() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f05"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -54,7 +54,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testUnknownSignatureTypeVerification() throws Exception { + public void testUnknownSignatureType() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f06"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -64,7 +64,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testNoUserVerification() throws Exception { + public void testNoUser() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f07"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -73,7 +73,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testUnverifiedEmailVerification() throws Exception { + public void testUnverifiedEmail() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f08"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -82,7 +82,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testBadEmailVerification() throws Exception { + public void testBadEmail() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f09"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -91,7 +91,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testUnknownKeyVerification() throws Exception { + public void testUnknownKey() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f10"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -100,7 +100,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testMalformedSignatureVerification() throws Exception { + public void testMalformedSignature() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f11"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -110,7 +110,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testInvalidVerification() throws Exception { + public void testInvalid() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f12"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); @@ -119,7 +119,7 @@ public class GHVerificationReasonTest extends AbstractGitHubWireMockTest { } @Test - public void testValidVerification() throws Exception { + public void testValid() throws Exception { GHRepository r = gitHub.getRepository("github-api/github-api"); GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f13"); assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala"); diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f09-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmailVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testBadEmail/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f01-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKeyVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testExpiredKey/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f03-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyErrorVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyError/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f04-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailableVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testGpgverifyUnavailable/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f12-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalidVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testInvalid/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f11-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignatureVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testMalformedSignature/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f07-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUserVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNoUser/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f02-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKeyVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testNotSigningKey/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f10-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKeyVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownKey/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f06-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureTypeVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnknownSignatureType/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f05-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsignedVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnsigned/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f08-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmailVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testUnverifiedEmail/mappings/user-1-c247f8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/__files/repos_github-api_github-api-441cdfd7-a44a-42b4-b732-57e674227760.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-d76abea9-c1be-430a-bbd0-28931c58e1e8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-d76abea9-c1be-430a-bbd0-28931c58e1e8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-d76abea9-c1be-430a-bbd0-28931c58e1e8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/__files/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-d76abea9-c1be-430a-bbd0-28931c58e1e8.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/__files/user-c247f81b-84b8-44e9-820a-0a91dc74ce98.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/mappings/repos_github-api_github-api-2-441cdf.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/mappings/repos_github-api_github-api-2-441cdf.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/mappings/repos_github-api_github-api-2-441cdf.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/mappings/repos_github-api_github-api-2-441cdf.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-3-d76abe.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-3-d76abe.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-3-d76abe.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/mappings/repos_github-api_github-api_commits_86a2e245aa6d71d54923655066049d9e21a15f13-3-d76abe.json diff --git a/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/mappings/user-1-c247f8.json b/src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/mappings/user-1-c247f8.json similarity index 100% rename from src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValidVerification/mappings/user-1-c247f8.json rename to src/test/resources/org/kohsuke/github/GHVerificationReasonTest/wiremock/testValid/mappings/user-1-c247f8.json