yaocloud / yao

Yet Another OpenStack API wrapper
MIT License
35 stars 12 forks source link

assert_equalの引数をswapした #131

Closed buty4649 closed 5 years ago

buty4649 commented 5 years ago

assert_equal(exptected, actual) になるように引数を入れ替えます。

buty4649 commented 5 years ago

こんな感じのワンライナーを実行し、rake testでコケたところは手動で直しました。

❯ git grep -l assert_equal | xargs sed -i -e 's!assert_equal(\([^,]\+\?\), \?\([^)]\+)\?\))!assert_equal(\2, \1)!g'
buty4649 commented 5 years ago

@hiboma approveされたあとですが、漏れを発見してしまいcommitしました :pray:

hiboma commented 5 years ago

ok dont mind!