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 -8
View File
@@ -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); }
}
}
}
}