Remove duplicate WebhookKey properties from merge

Both our branch and main added WebhookKey to the Anthropic test
mock classes, resulting in CS0102 duplicate definition errors.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Giles Odigwe
2026-05-12 10:02:56 -07:00
Unverified
parent 0269529ccf
commit 7cc5ff771b
2 changed files with 0 additions and 4 deletions
@@ -452,8 +452,6 @@ public sealed class AnthropicBetaServiceExtensionsTests
public IBetaService Beta => this.BetaService;
public string? WebhookKey { get => throw new NotImplementedException(); init => throw new NotImplementedException(); }
public IBetaService BetaService { get; }
IMessageService IAnthropicClient.Messages => new Mock<IMessageService>().Object;
@@ -82,8 +82,6 @@ public sealed class AnthropicClientExtensionsTests
public IBetaService Beta => throw new NotImplementedException();
public string? WebhookKey { get => throw new NotImplementedException(); init => throw new NotImplementedException(); }
public IAnthropicClient WithOptions(Func<ClientOptions, ClientOptions> modifier)
{
throw new NotImplementedException();