Fix failing tests by adding 2 new (undocumented) EventInfoState values

This commit is contained in:
Ryan Gribble
2017-03-11 11:32:54 +10:00
parent 7084a39396
commit 3a1e4b806f

View File

@@ -204,6 +204,17 @@ namespace Octokit
/// url of the reference's source.
/// </summary>
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Crossreferenced")]
Crossreferenced
Crossreferenced,
/// <summary>
/// The issue was reveiewed.
/// </summary>
Reviewed,
/// <summary>
/// A line comment was made.
/// </summary>
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Linecommented")]
Linecommented
}
}