Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ static HttpMethodTest()
new object[] { HttpMethod.Delete },
new object[] { HttpMethod.Head },
new object[] { HttpMethod.Options },
new object[] { HttpMethod.Trace }
new object[] { HttpMethod.Trace },
new object[] { HttpMethod.Query }
Comment on lines 21 to +25

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment looks right.

If we're already making changes here, mind making StaticHttpMethods a List<HttpMethod> instead, then using it in all tests in this file?
There's no point listing out the same list 3 times like is done currently, and the AddStaticHttpMethods helper doesn't make sense either.

};
AddStaticHttpMethods(staticHttpMethods);
StaticHttpMethods = staticHttpMethods;
Expand Down
Loading