remove count from failing test

This commit is contained in:
Haroon
2014-01-09 10:43:53 +00:00
parent e1a068bd60
commit 1af244d06b
+2 -2
View File
@@ -31,8 +31,8 @@ namespace Octokit.Tests.Clients
var client = new SearchClient(connection);
client.SearchUsers(new SearchUsersRequest("something"));
connection.Received().GetAll<User>(Arg.Is<Uri>(u => u.ToString() == "search/users"),
Arg.Is<Dictionary<string, string>>(d => d.Count == 4
&& d["q"] == "something"
Arg.Is<Dictionary<string, string>>(d =>
d["q"] == "something_random"
&& d["sort"] == "desc"));
}