mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-29 17:32:44 +00:00
💄 readability
This commit is contained in:
@@ -324,11 +324,11 @@ public class RepositoriesClientTests
|
||||
}
|
||||
finally
|
||||
{
|
||||
Task.WhenAll(createdRepositories
|
||||
.Select(repo => github.Repository.Delete(repo.Owner.Login, repo.Name)))
|
||||
.Wait();
|
||||
}
|
||||
var deleteRepos = createdRepositories
|
||||
.Select(repo => github.Repository.Delete(repo.Owner.Login, repo.Name));
|
||||
|
||||
Task.WhenAll(deleteRepos).Wait();
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
|
||||
Reference in New Issue
Block a user