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
+7 -10
View File
@@ -10,39 +10,36 @@ namespace Octokit
/// <summary>
/// Determines if notifications should be received from this repository.
/// </summary>
public bool Subscribed { get; set; }
public bool Subscribed { get; protected set; }
/// <summary>
/// Determines if all notifications should be blocked from this repository.
/// </summary>
public bool Ignored { get; set; }
public bool Ignored { get; protected set; }
/// <summary>
/// Url of the label
/// </summary>
public string Reason { get; set; }
public string Reason { get; protected set; }
/// <summary>
/// The <see cref="DateTimeOffset"/> for when this <see cref="Subscription"/> was created.
/// </summary>
public DateTimeOffset CreatedAt { get; set; }
public DateTimeOffset CreatedAt { get; protected set; }
/// <summary>
/// The API URL for this <see cref="Subscription"/>.
/// </summary>
public Uri Url { get; set; }
public Uri Url { get; protected set; }
/// <summary>
/// The API URL for this thread.
/// </summary>
public Uri ThreadUrl { get; set; }
public Uri ThreadUrl { get; protected set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Subscribed: {0}", Subscribed);
}
get { return String.Format(CultureInfo.InvariantCulture, "Subscribed: {0}", Subscribed); }
}
}
}