-
-
Notifications
You must be signed in to change notification settings - Fork 404
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
State of Tic Tac Toe: test 8 is an invalid game #1127
Comments
You're right, and we can fix it by removing (let's say) the very first O. |
I was going to do that and add one more test with a continue past without a second win. |
Great! To be as consistent as possible, let's wait for the specs to change before updating the tests here. |
Raised the problem specification as an issue: exercism/problem-specifications#2030 Only fixing the direct problem. I am now going to raise a PR to fix it. |
The test case has been won by X yet there are the same number of X's and O's. This fixes this issue: exercism/elixir#1127
* One of the test cases has too many O's The test case has been won by X yet there are the same number of X's and O's. This fixes this issue: exercism/elixir#1127 * Updated uuid Changed UUID for one test to allow test to pass. * Reimplemented a test case The existing test was invalid. * It was an O not an 0 Fixed typo
Fixed in #1129 |
Test 8 has the following test data
"O.O\nXXX\n.O.\n" which is an invalid game as X won before O's last turn
The text was updated successfully, but these errors were encountered: