From b35b73d49a469038f92ec21be88551698167a289 Mon Sep 17 00:00:00 2001 From: half-ogre Date: Mon, 16 Sep 2013 15:24:34 -0700 Subject: [PATCH] fix integration test That repo moved to a new org. --- Octokit.Tests.Integration/RepositoriesClientTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Octokit.Tests.Integration/RepositoriesClientTests.cs b/Octokit.Tests.Integration/RepositoriesClientTests.cs index 3e926b13..7c8c5aed 100644 --- a/Octokit.Tests.Integration/RepositoriesClientTests.cs +++ b/Octokit.Tests.Integration/RepositoriesClientTests.cs @@ -17,9 +17,9 @@ namespace Octokit.Tests.Integration Credentials = new Credentials("xapitestaccountx", "octocat11") }; - var repository = await github.Repository.Get("github", "ReactiveCocoa"); + var repository = await github.Repository.Get("ReactiveCocoa", "ReactiveCocoa"); - repository.CloneUrl.Should().Be("https://github.com/github/ReactiveCocoa.git"); + repository.CloneUrl.Should().Be("https://github.com/ReactiveCocoa/ReactiveCocoa.git"); } }