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
@@ -1,6 +1,5 @@
using System;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
namespace Octokit
@@ -11,25 +10,21 @@ namespace Octokit
/// <summary>
/// Whether the current user has administrative permissions
/// </summary>
public bool Admin { get; set; }
public bool Admin { get; protected set; }
/// <summary>
/// Whether the current user has push permissions
/// </summary>
public bool Push { get; set; }
public bool Push { get; protected set; }
/// <summary>
/// Whether the current user has pull permissions
/// </summary>
public bool Pull { get; set; }
public bool Pull { get; protected set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Admin: {0}, Push: {1}, Pull: {2}", Admin, Push, Pull);
}
get { return String.Format(CultureInfo.InvariantCulture, "Admin: {0}, Push: {1}, Pull: {2}", Admin, Push, Pull); }
}
}
}
}