From 688602fffb0811e3319647d265ba2c5505a3d228 Mon Sep 17 00:00:00 2001 From: Nils Gruson Date: Thu, 21 Dec 2023 21:10:22 +0100 Subject: [PATCH] Fixed netfx tests --- .../HttpClientTests.Basic.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/OpenTelemetry.Instrumentation.Http.Tests/HttpClientTests.Basic.cs b/test/OpenTelemetry.Instrumentation.Http.Tests/HttpClientTests.Basic.cs index f99fff25425..4c936f151ef 100644 --- a/test/OpenTelemetry.Instrumentation.Http.Tests/HttpClientTests.Basic.cs +++ b/test/OpenTelemetry.Instrumentation.Http.Tests/HttpClientTests.Basic.cs @@ -733,11 +733,11 @@ public async Task CustomPropagatorCalled(bool sample, bool createParentActivity) } [Theory] - //[InlineData("GET,POST,PUT", "GET", null)] - //[InlineData("get,post,put", "GET", null)] - //[InlineData("POST,PUT", "_OTHER", "GET")] - //[InlineData("post,put", "_OTHER", "GET")] - //[InlineData("fooBar", "_OTHER", "GET")] + [InlineData("GET,POST,PUT", "GET", null)] + [InlineData("get,post,put", "GET", null)] + [InlineData("POST,PUT", "_OTHER", "GET")] + [InlineData("post,put", "_OTHER", "GET")] + [InlineData("fooBar", "_OTHER", "GET")] [InlineData("foo,bar", "_OTHER", "GET")] public async Task KnownHttpMethodsAreBeingRespected(string knownMethods, string expectedMethod, string expectedOriginalMethod) {