You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the NinjaDocTester with .formParameters() the payload is not encoded as utf-8.
The root cause is in TestBrowserImpl:161:
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams);
The constructor is not called with any encoding.
Solution
The encoding should be added
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, StandardCharsets.UTF_8);
I've added this issue here since it seems that the DocTester repo is inactive for the last 3 years. So maybe we can find a solution in Ninja for this issue.
The text was updated successfully, but these errors were encountered:
Issue
When using the NinjaDocTester with
.formParameters()
the payload is not encoded as utf-8.The root cause is in
TestBrowserImpl:161
:The constructor is not called with any encoding.
Solution
The encoding should be added
I've added this issue here since it seems that the DocTester repo is inactive for the last 3 years. So maybe we can find a solution in Ninja for this issue.
The text was updated successfully, but these errors were encountered: