fixed those tests

This commit is contained in:
Haroon
2013-11-11 10:16:46 +00:00
parent 16035da33b
commit f2c06c690a
+2 -2
View File
@@ -31,7 +31,7 @@ namespace Octokit.Tests.Clients
client.GetAllTeams("orgName");
connection.Received().GetAll<Team>(Arg.Is<Uri>(u => u.ToString() == "organizations/orgName/teams"));
connection.Received().GetAll<Team>(Arg.Is<Uri>(u => u.ToString() == "orgs/orgName/teams"));
}
[Fact]
@@ -54,7 +54,7 @@ namespace Octokit.Tests.Clients
client.CreateTeam("orgName", team);
connection.Received().Post<Team>(Arg.Is<Uri>(u => u.ToString() == "organizations/orgName/teams"), team);
connection.Received().Post<Team>(Arg.Is<Uri>(u => u.ToString() == "orgs/orgName/teams"), team);
}
[Fact]