From f2c06c690aae62c0575dcc460b18758b97beaaa9 Mon Sep 17 00:00:00 2001 From: Haroon Date: Mon, 11 Nov 2013 10:16:46 +0000 Subject: [PATCH] fixed those tests --- Octokit.Tests/Clients/TeamsClientTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Octokit.Tests/Clients/TeamsClientTests.cs b/Octokit.Tests/Clients/TeamsClientTests.cs index 777e09b1..c405e58b 100644 --- a/Octokit.Tests/Clients/TeamsClientTests.cs +++ b/Octokit.Tests/Clients/TeamsClientTests.cs @@ -31,7 +31,7 @@ namespace Octokit.Tests.Clients client.GetAllTeams("orgName"); - connection.Received().GetAll(Arg.Is(u => u.ToString() == "organizations/orgName/teams")); + connection.Received().GetAll(Arg.Is(u => u.ToString() == "orgs/orgName/teams")); } [Fact] @@ -54,7 +54,7 @@ namespace Octokit.Tests.Clients client.CreateTeam("orgName", team); - connection.Received().Post(Arg.Is(u => u.ToString() == "organizations/orgName/teams"), team); + connection.Received().Post(Arg.Is(u => u.ToString() == "orgs/orgName/teams"), team); } [Fact]