Skip to content

Commit

Permalink
Merge pull request #1135 from Anubhav10/Issue-1002
Browse files Browse the repository at this point in the history
Issue 1002
  • Loading branch information
haacked committed Mar 9, 2016
2 parents c4d6cd5 + 3900e1b commit 73d2e8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Octokit.Tests.Integration/Clients/RepositoriesClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -439,14 +439,15 @@ public void Dispose()

public class TheDeleteMethod
{
[IntegrationTest(Skip = "See https://github.com/octokit/octokit.net/issues/1002 for investigating this failing test")]
[IntegrationTest]
public async Task DeletesRepository()
{
var github = Helper.GetAuthenticatedClient();

var repoName = Helper.MakeNameWithTimestamp("repo-to-delete");
await github.Repository.Create(new NewRepository(repoName));

await github.Repository.Create(new NewRepository(repoName));

await github.Repository.Delete(Helper.UserName, repoName);
}
}
Expand Down

0 comments on commit 73d2e8f

Please sign in to comment.