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
+6 -6
View File
@@ -11,33 +11,33 @@ namespace Octokit
/// <summary>
/// The URL associated with this reference.
/// </summary>
public string Url { get; set; }
public string Url { get; protected set; }
/// <summary>
/// The reference label.
/// </summary>
public string Label { get; set; }
public string Label { get; protected set; }
/// <summary>
/// The reference identifier.
/// </summary>
public string Ref { get; set; }
public string Ref { get; protected set; }
/// <summary>
/// The sha value of the reference.
/// </summary>
public string Sha { get; set; }
public string Sha { get; protected set; }
/// <summary>
/// The user associated with this reference.
/// </summary>
public User User { get; set; }
public User User { get; protected set; }
/// <summary>
/// The repository associated with this reference.
/// </summary>
[Parameter(Key = "repo")]
public Repository Repository { get; set; }
public Repository Repository { get; protected set; }
internal string DebuggerDisplay
{