mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 04:40:54 +00:00
feat: Removing accept header previews (#2515)
This commit is contained in:
@@ -29,7 +29,7 @@ namespace Octokit.Tests
|
||||
client.GetAll();
|
||||
|
||||
github.Connection.Received(1).Get<List<EmailAddress>>(_expectedUri,
|
||||
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0), null);
|
||||
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -41,7 +41,7 @@ namespace Octokit.Tests
|
||||
client.GetAll(ApiOptions.None);
|
||||
|
||||
github.Connection.Received(1).Get<List<EmailAddress>>(_expectedUri,
|
||||
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0), null);
|
||||
Arg.Is<Dictionary<string, string>>(dictionary => dictionary.Count == 0));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user