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

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-10-25 01:14:04 +09:00
parent 0cf5a0ee37
commit 6c966a1f86
+1 -1
View File
@@ -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