feat: Removing accept header previews (#2515)

This commit is contained in:
Chris Simpson
2022-08-01 15:37:23 +01:00
committed by GitHub
parent 840935a8d7
commit 2f7bd00dd6
138 changed files with 954 additions and 1659 deletions
@@ -21,7 +21,7 @@ namespace Octokit.Tests.Reactive
authEndpoint.GetAll();
client.Connection.Received(1).Get<List<Authorization>>(Arg.Is<Uri>(u => u.ToString() == "authorizations"),
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0), null);
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0));
}
[Fact]
@@ -33,7 +33,7 @@ namespace Octokit.Tests.Reactive
authEndpoint.GetAll(ApiOptions.None);
client.Connection.Received(1).Get<List<Authorization>>(Arg.Is<Uri>(u => u.ToString() == "authorizations"),
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0), null);
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0));
}
[Fact]