Rename mapping files to include index

This commit is contained in:
Liam Newman
2019-10-03 14:05:15 -07:00
parent a02a6a22d0
commit 19e1a00fd7
422 changed files with 22 additions and 4 deletions

View File

@@ -218,14 +218,14 @@ public class AppTest extends AbstractGitHubApiWireMockTest {
@Test
public void testRateLimit() throws IOException {
System.out.println(gitHub.getRateLimit());
assertThat(gitHub.getRateLimit(), notNullValue());
}
@Test
public void testMyOrganizations() throws IOException {
Map<String, GHOrganization> org = gitHub.getMyOrganizations();
assertFalse(org.keySet().contains(null));
System.out.println(org);
//System.out.println(org);
}
@Test