Issue 1002

The test was working. Unskipped it.
This commit is contained in:
Anubhav10
2016-03-09 10:02:09 +05:30
parent 8c10ef1f18
commit 3900e1b15d
@@ -439,14 +439,15 @@ public class RepositoriesClientTests
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);
}
}