diff options
author | Sharang Dashputre <sharang.d@gmail.com> | 2018-10-02 13:39:40 +0530 |
---|---|---|
committer | Sharang Dashputre <sharang.d@gmail.com> | 2018-10-02 13:55:39 +0530 |
commit | 3c4b729f48c0320499f16a2e6f50a3d27bde1114 (patch) | |
tree | a0662fdf46c00056fb2ea6ec804611f2587e0be0 /activemodel/test | |
parent | 8171a1b9db029f4c6d45e2df3037d53a4864acb1 (diff) | |
download | rails-3c4b729f48c0320499f16a2e6f50a3d27bde1114.tar.gz rails-3c4b729f48c0320499f16a2e6f50a3d27bde1114.tar.bz2 rails-3c4b729f48c0320499f16a2e6f50a3d27bde1114.zip |
Fix spellings for 'unmarshall(ing/ed)' & 'marshall(ing/ed)'
Diffstat (limited to 'activemodel/test')
-rw-r--r-- | activemodel/test/cases/attribute_set_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/cases/attribute_set_test.rb b/activemodel/test/cases/attribute_set_test.rb index b868dba743..62feb9074e 100644 --- a/activemodel/test/cases/attribute_set_test.rb +++ b/activemodel/test/cases/attribute_set_test.rb @@ -217,7 +217,7 @@ module ActiveModel assert_equal({ foo: "1" }, attributes.to_hash) end - test "marshaling dump/load legacy materialized attribute hash" do + test "marshalling dump/load legacy materialized attribute hash" do builder = AttributeSet::Builder.new(foo: Type::String.new) attributes = builder.build_from_database(foo: "1") |