Rename tests

Some RepositoriesClientTests test methods had the names wrong. According to the method name the method under test would return organizations and not repositories.
This commit is contained in:
rms81
2015-02-01 19:34:28 +00:00
parent 3444321e25
commit 86244d58a1
@@ -263,7 +263,7 @@ namespace Octokit.Tests.Clients
public class TheGetAllForCurrentMethod
{
[Fact]
public void RequestsTheCorrectUrlAndReturnsOrganizations()
public void RequestsTheCorrectUrlAndReturnsRepositories()
{
var connection = Substitute.For<IApiConnection>();
var client = new RepositoriesClient(connection);
@@ -278,7 +278,7 @@ namespace Octokit.Tests.Clients
public class TheGetAllForUserMethod
{
[Fact]
public void RequestsTheCorrectUrlAndReturnsOrganizations()
public void RequestsTheCorrectUrlAndReturnsRepositories()
{
var connection = Substitute.For<IApiConnection>();
var client = new RepositoriesClient(connection);
@@ -301,7 +301,7 @@ namespace Octokit.Tests.Clients
public class TheGetAllForOrgMethod
{
[Fact]
public void RequestsTheCorrectUrlAndReturnsOrganizations()
public void RequestsTheCorrectUrlAndReturnsRepositories()
{
var connection = Substitute.For<IApiConnection>();
var client = new RepositoriesClient(connection);