Fixed failing tests

This commit is contained in:
Kristian Hellang
2015-01-06 00:19:21 +01:00
parent 535bad2dac
commit 21ca33817d
44 changed files with 501 additions and 395 deletions
+16 -9
View File
@@ -8,14 +8,21 @@ namespace Octokit
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class PullRequestCommit
{
public SignatureResponse Author { get; set; }
public Uri CommentsUrl { get; set; }
public Commit Commit { get; set; }
public SignatureResponse Committer { get; set; }
public Uri HtmlUrl { get; set; }
public IEnumerable<GitReference> Parents { get; set; }
public string Sha { get; set; }
public Uri Url { get; set; }
public SignatureResponse Author { get; protected set; }
public Uri CommentsUrl { get; protected set; }
public Commit Commit { get; protected set; }
public SignatureResponse Committer { get; protected set; }
public Uri HtmlUrl { get; protected set; }
public IEnumerable<GitReference> Parents { get; protected set; }
public string Sha { get; protected set; }
public Uri Url { get; protected set; }
internal string DebuggerDisplay
{
@@ -26,4 +33,4 @@ namespace Octokit
}
}
}
}
}