-
-
Notifications
You must be signed in to change notification settings - Fork 544
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
Hamming: Updates canonical-data.json to comply with schema #875
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good, but you should also be updating the version. For more information, see: https://github.com/exercism/problem-specifications#test-data-versioning
@ErikSchierboom, thanks for pointing out to the issue. |
@m-a-ge No problem! Thanks for taking the effort to do a PR. |
@@ -110,14 +110,14 @@ | |||
"property": "distance", | |||
"strand1": "AATG", | |||
"strand2": "AAA", | |||
"expected": -1 | |||
"expected": {"error": "leftStrand and rightStrand must be of equal length"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leftStrand
looks a bit like a Java parameter name. How about 'left strand'? Or 'strands are of different lengths'?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It makes sense, will change it as well
@ErikSchierboom, I've made requested changes, verify please 👮 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good!
No additional action needs to be taken; we were already expecting an error for the cases of unequal length (which is what 2.0.0 provides). exercism/problem-specifications#875
No additional action needs to be taken; we were already expecting an error for the cases of unequal length (which is what 2.0.0 provides). exercism/problem-specifications#875
Make Acronym unlock WordCount
Relevant PRs: - exercism/problem-specifications#625 - exercism/problem-specifications#844 - exercism/problem-specifications#845 - exercism/problem-specifications#875 - exercism/problem-specifications#953 - exercism/problem-specifications#1129 - exercism/problem-specifications#1389 Basically adds every test case from the current canonical-data.json without deleting the old ones.
Relevant PRs: 1) Test cases: - exercism/problem-specifications#625 - exercism/problem-specifications#844 - exercism/problem-specifications#845 - exercism/problem-specifications#875 - exercism/problem-specifications#953 - exercism/problem-specifications#1129 - exercism/problem-specifications#1389 2) README: - exercism/problem-specifications#1360 Basically adds every test case from the current canonical-data.json without deleting the old ones.
Should resolve #812