From 2168d592ecef20f40573d7b4c771e5b5356a420a Mon Sep 17 00:00:00 2001 From: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> Date: Fri, 13 Feb 2026 11:30:58 +0000 Subject: [PATCH] .NET: Disable irrelevant integration test (#3913) * disable irrelevant integration test * Update dotnet/tests/AzureAI.IntegrationTests/AIProjectClientAgentStructuredOutputRunTests.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../AIProjectClientAgentStructuredOutputRunTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotnet/tests/AzureAI.IntegrationTests/AIProjectClientAgentStructuredOutputRunTests.cs b/dotnet/tests/AzureAI.IntegrationTests/AIProjectClientAgentStructuredOutputRunTests.cs index 3b69b5693a..94ce01e221 100644 --- a/dotnet/tests/AzureAI.IntegrationTests/AIProjectClientAgentStructuredOutputRunTests.cs +++ b/dotnet/tests/AzureAI.IntegrationTests/AIProjectClientAgentStructuredOutputRunTests.cs @@ -73,6 +73,10 @@ public class AIProjectClientAgentStructuredOutputRunTests() : StructuredOutputRu [Fact(Skip = NotSupported)] public override Task RunWithResponseFormatReturnsExpectedResultAsync() => base.RunWithResponseFormatReturnsExpectedResultAsync(); + + [Fact(Skip = NotSupported)] + public override Task RunWithPrimitiveTypeReturnsExpectedResultAsync() => + base.RunWithPrimitiveTypeReturnsExpectedResultAsync(); } ///