Rename request param version strategy to query param

Closes gh-35263
This commit is contained in:
rstoyanchev
2025-07-31 15:32:12 +01:00
parent 18ee8adaeb
commit 08ccf46399
7 changed files with 129 additions and 10 deletions
@@ -54,7 +54,7 @@ public class ApiVersionTests {
String param = "api-version";
Map<String, String> result = performRequest(
configurer -> configurer.useRequestParam(param),
configurer -> configurer.useQueryParam(param),
ApiVersionInserter.useQueryParam(param));
assertThat(result.get("query")).isEqualTo(param + "=1.2");