mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
remove count from failing test
This commit is contained in:
@@ -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"));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user