Updated the enum ItemState with deprecating the ItemState.All and making the necessary changes

This commit is contained in:
Prayank Mathur
2016-03-14 23:22:18 +05:30
parent 56791f2cc8
commit 397b1f1c82
19 changed files with 42 additions and 42 deletions
@@ -79,7 +79,7 @@ public class SearchClientTests
{
var request = new SearchIssuesRequest("phone");
request.Repos.Add("caliburn-micro", "caliburn.micro");
request.State = ItemStateFilter.Open;
request.State = ItemState.Open;
var issues = await _gitHubClient.Search.SearchIssues(request);