Skip to content

Commit

Permalink
Fix for GitHub user API tests
Browse files Browse the repository at this point in the history
User API is sending `hireable:null`, which was breaking the
deserialization of the user object.
  • Loading branch information
bennor committed Aug 31, 2015
1 parent 80370f2 commit c038134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Refit-Tests/GitHubApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class User
public string Blog { get; set; }
public string Location { get; set; }
public string Email { get; set; }
public bool Hireable { get; set; }
public bool? Hireable { get; set; }
public string Bio { get; set; }
public int PublicRepos { get; set; }
public int Followers { get; set; }
Expand Down

0 comments on commit c038134

Please sign in to comment.