diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-08-16 05:29:32 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 05:29:32 -0300 |
commit | 1a52ed178423dd727653c31398045993cd8c8cb8 (patch) | |
tree | 12b324548516f7675ce20e52e28779c41345322d /activerecord/test | |
parent | 737fa371050e4b58a1b91e908f338b525b468536 (diff) | |
parent | e7023cb8f153a1b340c24c9b2525e8b27567ebdb (diff) | |
download | rails-1a52ed178423dd727653c31398045993cd8c8cb8.tar.gz rails-1a52ed178423dd727653c31398045993cd8c8cb8.tar.bz2 rails-1a52ed178423dd727653c31398045993cd8c8cb8.zip |
Merge pull request #26151 from kamipo/avoid_to_allow_unused_splat_args
Avoid to allow unused splat args for `t.timestamps` in `create_table`
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/timestamp_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/timestamp_test.rb b/activerecord/test/cases/timestamp_test.rb index 519d9db601..cd83518e84 100644 --- a/activerecord/test/cases/timestamp_test.rb +++ b/activerecord/test/cases/timestamp_test.rb @@ -462,7 +462,7 @@ class TimestampTest < ActiveRecord::TestCase def test_index_is_created_for_both_timestamps ActiveRecord::Base.connection.create_table(:foos, force: true) do |t| - t.timestamps(:foos, null: true, index: true) + t.timestamps null: true, index: true end indexes = ActiveRecord::Base.connection.indexes("foos") |