-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JDK language specific tests #7564
Comments
Hi, it would be great to have a list of such tests that fail for you |
io.quarkus.reactive.pg.client.ReactivePgReloadTest.testHotReplacement() |
Would you also like to provide a Pull Request that updates the tests accordingly? |
I found a solution for UNIX systems: set the ENV_VAR: LC_ALL=en_US.UTF-8 |
You can set env vars during command execution (simply by prepending the command with the something like NAME=VALUE mvn clean install) |
Yup. But it would be cool to integrate into maven pom. |
When checking out the current master branch and do a build,
some tests fail because the expected error message is in english but my system is not in english so the actual error message does not match.
Example:
[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 5.375 s <<< FAILURE! - in io.quarkus.reactive.pg.client.ReactivePgReloadTest [ERROR] testHotReplacement Time elapsed: 5.365 s <<< FAILURE! java.lang.AssertionError: 1 expectation failed. Response body doesn't match expectation. Expected: (a string starting with "Connection refused" and a string ending with ":2345") Actual: Verbindungsaufbau abgelehnt: localhost/127.0.0.1:2345
Running maven with -Duser.language=en -Duser.country=US did not solve the problem.
The text was updated successfully, but these errors were encountered: