1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix AJ tests on ruby 2.4 being causes since classes are unified for Integer, and we create test name nased on arg class. Append ar as well to the test name

This commit is contained in:
Vipul A M 2016-07-09 16:24:03 -07:00
parent 24f04b6657
commit 8dd9bb6e9b
No known key found for this signature in database
GPG key ID: 4C9362FE1F574587

View file

@ -14,7 +14,7 @@ class ArgumentSerializationTest < ActiveSupport::TestCase
[ 1, 'a' ],
{ 'a' => 1 }
].each do |arg|
test "serializes #{arg.class} verbatim" do
test "serializes #{arg.class} - #{arg} verbatim" do
assert_arguments_unchanged arg
end
end