Cleanup tabs and whitespace

This commit is contained in:
Liam Newman
2019-11-13 12:47:19 -08:00
parent d23c718036
commit 8943af9840
48 changed files with 526 additions and 526 deletions

View File

@@ -217,23 +217,23 @@ public class AppTest extends AbstractGitHubWireMockTest {
}
}
}
@Test
public void testUserPublicOrganizationsWhenThereAreSome() throws IOException {
// kohsuke had some public org memberships at the time Wiremock recorded the GitHub API responses
GHUser user = new GHUser();
user.login = "kohsuke";
// kohsuke had some public org memberships at the time Wiremock recorded the GitHub API responses
GHUser user = new GHUser();
user.login = "kohsuke";
Map<String, GHOrganization> orgs = gitHub.getUserPublicOrganizations( user );
assertFalse(orgs.isEmpty());
}
@Test
public void testUserPublicOrganizationsWhenThereAreNone() throws IOException {
// bitwiseman had no public org memberships at the time Wiremock recorded the GitHub API responses
GHUser user = new GHUser();
user.login = "bitwiseman";
// bitwiseman had no public org memberships at the time Wiremock recorded the GitHub API responses
GHUser user = new GHUser();
user.login = "bitwiseman";
Map<String, GHOrganization> orgs = gitHub.getUserPublicOrganizations( user );
assertTrue(orgs.isEmpty());
}