Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 21b916f

Browse files
committed
Add test for x-github-request-id
1 parent 206334c commit 21b916f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/GitHub.Exports.UnitTests/ApiExceptionExtensionsTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public class TheIsGitHubApiExceptionMethod
1111
{
1212
[TestCase("Not-GitHub-Request-Id", false)]
1313
[TestCase("X-GitHub-Request-Id", true)]
14+
[TestCase("x-github-request-id", true)]
1415
public void NoGitHubRequestId(string key, bool expect)
1516
{
1617
var ex = CreateApiException(new Dictionary<string, string> { { key, "ANYTHING" } });

0 commit comments

Comments
 (0)