Merge pull request #26631 from kamipo/remove_duplicate_condition

Remove duplicated `unless current_adapter?(:SQLite3Adapter)` condition
This commit is contained in:
Matthew Draper 2016-10-06 02:41:17 +10:30 committed by GitHub
commit bf5876af09

@ -72,9 +72,7 @@ def test_native_decimal_insert_manual_vs_automatic
assert_kind_of BigDecimal, row.wealth
# If this assert fails, that means the SELECT is broken!
unless current_adapter?(:SQLite3Adapter)
assert_equal correct_value, row.wealth
end
# Reset to old state
TestModel.delete_all