fixed broken test - invalid name

This commit is contained in:
Haroon
2013-11-07 09:03:10 +00:00
parent b8afd4fb0b
commit c0d33a0274
+1 -1
View File
@@ -31,7 +31,7 @@ namespace Octokit.Tests.Clients
client.GetAllTeams("orgName");
connection.Received().GetAll<TeamItem>(Arg.Is<Uri>(u => u.ToString() == "orgs/username/teams"));
connection.Received().GetAll<TeamItem>(Arg.Is<Uri>(u => u.ToString() == "orgs/orgName/teams"));
}
[Fact]