From d8db5d35f3db95c5d28ec3e121332f57a435e423 Mon Sep 17 00:00:00 2001 From: Adam Ralph Date: Thu, 15 May 2014 18:58:20 +0200 Subject: [PATCH] #484 fixed failing tests --- Octokit.Tests/Clients/SearchClientTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Octokit.Tests/Clients/SearchClientTests.cs b/Octokit.Tests/Clients/SearchClientTests.cs index 114ca5c7..e33115a9 100644 --- a/Octokit.Tests/Clients/SearchClientTests.cs +++ b/Octokit.Tests/Clients/SearchClientTests.cs @@ -714,7 +714,7 @@ namespace Octokit.Tests.Clients connection.Received().Get( Arg.Is(u => u.ToString() == "search/issues"), - Arg.Is>(d => d["q"] == "something+state:Open")); + Arg.Is>(d => d["q"] == "something+state:open")); } [Fact] @@ -729,7 +729,7 @@ namespace Octokit.Tests.Clients connection.Received().Get( Arg.Is(u => u.ToString() == "search/issues"), - Arg.Is>(d => d["q"] == "something+state:Closed")); + Arg.Is>(d => d["q"] == "something+state:closed")); } [Fact] @@ -1312,7 +1312,7 @@ namespace Octokit.Tests.Clients connection.Received().Get( Arg.Is(u => u.ToString() == "search/code"), - Arg.Is>(d => + Arg.Is>(d => d["q"] == "something+path:tools/FAKE.core+extension:fs+repo:octokit.net")); } }