Fixed moar failing tests

This commit is contained in:
Kristian Hellang
2015-01-06 00:51:36 +01:00
parent 8cdf53d878
commit cb4f056a86
8 changed files with 49 additions and 49 deletions
+4 -7
View File
@@ -13,24 +13,21 @@ namespace Octokit
/// <summary>
/// The number of additions made within the commit
/// </summary>
public int Additions { get; set; }
public int Additions { get; protected set; }
/// <summary>
/// The number of deletions made within the commit
/// </summary>
public int Deletions { get; set; }
public int Deletions { get; protected set; }
/// <summary>
/// The total number of modifications within the commit
/// </summary>
public int Total { get; set; }
public int Total { get; protected set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Stats: +{0} -{1} ={2}", Additions, Deletions, Total);
}
get { return String.Format(CultureInfo.InvariantCulture, "Stats: +{0} -{1} ={2}", Additions, Deletions, Total); }
}
}
}