From 02b5f37bbfb57a71ce209da59bd56eb59dd76c49 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Tue, 29 Mar 2016 17:43:59 +0700 Subject: [PATCH] RepositoryForksClientTests fixes --- .../Clients/RepositoryForksClientTests.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Octokit.Tests.Integration/Clients/RepositoryForksClientTests.cs b/Octokit.Tests.Integration/Clients/RepositoryForksClientTests.cs index 84c849f8..bf2770a0 100644 --- a/Octokit.Tests.Integration/Clients/RepositoryForksClientTests.cs +++ b/Octokit.Tests.Integration/Clients/RepositoryForksClientTests.cs @@ -1,5 +1,4 @@ -using System; -using System.Linq; +using System.Linq; using System.Threading.Tasks; using Xunit; @@ -41,7 +40,7 @@ namespace Octokit.Tests.Integration.Clients [IntegrationTest] public async Task ForkCreatedForUserLoggedIn() { - // The fork is created asynchronially by github and therefore it cannot + // The fork is created asynchronically by github and therefore it cannot // be certain that the repo exists when the test ends. It is therefore deleted // before the test starts instead of after. Helper.DeleteRepo(Helper.Credentials.Login, "octokit.net"); @@ -58,7 +57,7 @@ namespace Octokit.Tests.Integration.Clients [OrganizationTest] public async Task ForkCreatedForOrganization() { - // The fork is created asynchronially by github and therefore it cannot + // The fork is created asynchronically by github and therefore it cannot // be certain that the repo exists when the test ends. It is therefore deleted // before the test starts. Helper.DeleteRepo(Helper.Organization, "octokit.net");