Change the order of "expected" and "actual" in test

parent 0cf5a0ee
......@@ -33,7 +33,7 @@ assert 'Enumerator.new' do
a, b = b, a + b
end
end
assert_equal fib.take(10), [1,1,2,3,5,8,13,21,34,55]
assert_equal [1,1,2,3,5,8,13,21,34,55], fib.take(10)
end
assert 'Enumerator#initialize_copy' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment