mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-31 18:13:21 +00:00
Issue 1002
The test was working. Unskipped it.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user