aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/belongs_to_associations_test.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-12-10 21:40:20 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-12-10 21:40:20 +0900
commit3f7cd2c57151f9873f6e2a06dd020447fd7e360a (patch)
tree24c3ac5f77995a7fc682ec034804978c97e1421f /activerecord/test/cases/associations/belongs_to_associations_test.rb
parent753da21322a2701f8b2294da1c26df8a783436d5 (diff)
downloadrails-3f7cd2c57151f9873f6e2a06dd020447fd7e360a.tar.gz
rails-3f7cd2c57151f9873f6e2a06dd020447fd7e360a.tar.bz2
rails-3f7cd2c57151f9873f6e2a06dd020447fd7e360a.zip
Fix CI failure caused by #25227 and #25280 were merged at the same time
Diffstat (limited to 'activerecord/test/cases/associations/belongs_to_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/belongs_to_associations_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/belongs_to_associations_test.rb b/activerecord/test/cases/associations/belongs_to_associations_test.rb
index 2b8d01743f..81a2a161f2 100644
--- a/activerecord/test/cases/associations/belongs_to_associations_test.rb
+++ b/activerecord/test/cases/associations/belongs_to_associations_test.rb
@@ -1079,7 +1079,7 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase
end
comment = model.new
- comment.post_id = 10_000_000_000
+ comment.post_id = 9223372036854775808 # out of range in the bigint
assert_nil comment.post
assert_not comment.valid?