Skip to content

Commit

Permalink
Fixed netfx tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ngruson committed Dec 21, 2023
1 parent 5e6d36c commit 688602f
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 688602f

Please sign in to comment.