aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-05-03 17:09:58 -0500
committerVipul A M <vipulnsward@gmail.com>2016-05-03 17:18:21 -0500
commita51bdd3ddc6c05b816735ad8304f88d9667709ed (patch)
tree110aa3413d13c66789bf7b24b0b586a568d9fcba /activemodel/test
parente02a136f7f7024968fc915fca2a3d27464ae2bc0 (diff)
downloadrails-a51bdd3ddc6c05b816735ad8304f88d9667709ed.tar.gz
rails-a51bdd3ddc6c05b816735ad8304f88d9667709ed.tar.bz2
rails-a51bdd3ddc6c05b816735ad8304f88d9667709ed.zip
Followup of #24835
Fix failing tests
Diffstat (limited to 'activemodel/test')
-rw-r--r--activemodel/test/cases/type/unsigned_integer_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/cases/type/unsigned_integer_test.rb b/activemodel/test/cases/type/unsigned_integer_test.rb
index 16301b3ac0..026cb08a06 100644
--- a/activemodel/test/cases/type/unsigned_integer_test.rb
+++ b/activemodel/test/cases/type/unsigned_integer_test.rb
@@ -9,7 +9,7 @@ module ActiveModel
end
test "minus value is out of range" do
- assert_raises(::RangeError) do
+ assert_raises(ActiveModel::RangeError) do
UnsignedInteger.new.serialize(-1)
end
end