mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-17 00:11:24 +00:00
Presence check needs to run on the same repo
This commit is contained in:
@@ -19,12 +19,13 @@ public class LifecycleTest extends AbstractGitHubApiTestBase {
|
||||
@Test
|
||||
public void testCreateRepository() throws IOException, GitAPIException, InterruptedException {
|
||||
GHMyself myself = gitHub.getMyself();
|
||||
GHRepository repository = myself.getRepository("github-api-test");
|
||||
GHOrganization org = gitHub.getOrganization("github-api-test-org");
|
||||
GHRepository repository = org.getRepository("github-api-test");
|
||||
if (repository != null) {
|
||||
repository.delete();
|
||||
Thread.sleep(1000);
|
||||
}
|
||||
repository = gitHub.getOrganization("github-api-test-org").createRepository("github-api-test",
|
||||
repository = org.createRepository("github-api-test",
|
||||
"a test repository used to test kohsuke's github-api", "http://github-api.kohsuke.org/", "Core Developers", true);
|
||||
Thread.sleep(1000); // wait for the repository to become ready
|
||||
|
||||
|
||||
Reference in New Issue
Block a user