-
Notifications
You must be signed in to change notification settings - Fork 20
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
Improve message-web text format issue #596 #1029
base: main
Are you sure you want to change the base?
Conversation
Hi @lezhdz98! Welcome, and congratulations on your first PR! I'm no longer at mastercard, so I'm not in charge of this project any more. You can hit up @vchaitanya for more empowered support (for example, I can't approve the workflow runs). That said, I've had a quick look at your change and there are a couple of things to fix:
Cheers! |
…, and modified the tests to this new format
Hi @vchaitanya, I improve the format for the message-web texts and also modified the tests to be accurate with the new format. |
Hi @lezhdz98, I don't think we need the change in pom.xml. The build seems to be failing due to that change. Can you revert the changes in pom.xml. |
…, and modified the tests to this new format
@vchaitanya I reverted the changes in pom.xml :) |
@lezhdz98, |
Hi @lezhdz98, Regarding the failing test, you can read more about InheritanceHealth. The reason ExampleSystemTest.inheritanceHealth might be failing is due to assertable() method being called within this class. This assertable then calls the asHuman() method which you have updated. The slight change in the format is causing the values to be updated. Updating the expected value should be sufficient. The Mutation build is also failing. You can check this readme for more details about pitest and mutation. Based on the report, adding/updating a test scenario which covers the missed conditional branch should pass this test. If we have a scenario with the valueWidth greater than "Values".length(), it might provide the necessary coverage. Let me know if you need help with something. |
Hello @therealryan, this is my first PR on Open Source, let me know if this is good or I need to improve something
Thank you!