mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 10:55:53 +00:00
Fixed moar failing tests
This commit is contained in:
@@ -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); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user