We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a018635 commit a74b9e3Copy full SHA for a74b9e3
test/test_request_option.py
@@ -325,6 +325,11 @@ def test_filtering_parameters(self) -> None:
325
opts.parameter("vf_Parameters.name4", "value4")
326
opts.page_type = TSC.PDFRequestOptions.PageType.Tabloid
327
328
+ # While Tableau Server side IS case sensitive with the query string,
329
+ # requiring the prefix to be "vf_Parameters", requests does not end
330
+ # up preserving the case sensitivity with the Response.Request
331
+ # object. It also shows up lowercased in the requests_mock request
332
+ # history.
333
resp = self.server.workbooks.get_request(url, request_object=opts)
334
query_params = parse_qs(resp.request.query)
335
self.assertIn("vf_parameters.name1@", query_params)
0 commit comments