Merge pull request #28 from octokit/half-ogre/fix-integration-test

Fix integration test
This commit is contained in:
Drew Miller
2013-09-16 15:45:29 -07:00
@@ -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");
}
}