mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 04:16:51 +00:00
Fixed failing tests
This commit is contained in:
@@ -7,16 +7,15 @@ namespace Octokit
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class Reference
|
||||
{
|
||||
public string Ref { get; set; }
|
||||
public string Url { get; set; }
|
||||
public TagObject Object { get; set; }
|
||||
public string Ref { get; protected set; }
|
||||
|
||||
public string Url { get; protected set; }
|
||||
|
||||
public TagObject Object { get; protected set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
get
|
||||
{
|
||||
return String.Format(CultureInfo.InvariantCulture, "Ref: {0}", Ref);
|
||||
}
|
||||
get { return String.Format(CultureInfo.InvariantCulture, "Ref: {0}", Ref); }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user