We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aff14c commit 00151faCopy full SHA for 00151fa
exercises/wordy/wordy_test.rb
@@ -71,7 +71,8 @@ def test_multiply_twice
71
def test_add_then_multiply
72
skip
73
question = 'What is -3 plus 7 multiplied by -2?'
74
- assert_equal(-8, WordProblem.new(question).answer)
+ message = 'You should ignore order of precedence. -3 + 7 * -2 = -8, not -17'
75
+ assert_equal(-8, WordProblem.new(question).answer, message)
76
end
77
78
def test_divide_twice
0 commit comments