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

View File

@@ -10,32 +10,32 @@ namespace Octokit
/// <summary>
/// The gist comment id.
/// </summary>
public int Id { get; set; }
public int Id { get; protected set; }
/// <summary>
/// The URL for this gist comment.
/// </summary>
public Uri Url { get; set; }
public Uri Url { get; protected set; }
/// <summary>
/// The body of this gist comment.
/// </summary>
public string Body { get; set; }
/// </summary>t
public string Body { get; protected set; }
/// <summary>
/// The user that created this gist comment.
/// </summary>
public User User { get; set; }
public User User { get; protected set; }
/// <summary>
/// The date this comment was created.
/// </summary>
public DateTimeOffset CreatedAt { get; set; }
public DateTimeOffset CreatedAt { get; protected set; }
/// <summary>
/// The date this comment was last updated.
/// </summary>
public DateTimeOffset? UpdatedAt { get; set; }
public DateTimeOffset? UpdatedAt { get; protected set; }
internal string DebuggerDisplay
{