diff options
author | Xavier Noria <fxn@hashref.com> | 2016-08-06 18:50:17 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2016-08-06 18:50:17 +0200 |
commit | 4b6c68dfb810c836f87587a16353317d1a180805 (patch) | |
tree | bebdbb90baa5f07de0688ec255ee18b460053d18 /actionview/test/lib | |
parent | 66a7cfa91045e05f134efc9ac0e226e66161e2e6 (diff) | |
download | rails-4b6c68dfb810c836f87587a16353317d1a180805.tar.gz rails-4b6c68dfb810c836f87587a16353317d1a180805.tar.bz2 rails-4b6c68dfb810c836f87587a16353317d1a180805.zip |
applies new string literal convention in actionview/test
The current code base is not uniform. After some discussion,
we have chosen to go with double quotes by default.
Diffstat (limited to 'actionview/test/lib')
-rw-r--r-- | actionview/test/lib/controller/fake_models.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/lib/controller/fake_models.rb b/actionview/test/lib/controller/fake_models.rb index 65c68fc34a..e1b362c6ed 100644 --- a/actionview/test/lib/controller/fake_models.rb +++ b/actionview/test/lib/controller/fake_models.rb @@ -191,7 +191,7 @@ class Plane attr_reader :to_key def model_name - OpenStruct.new param_key: 'airplane' + OpenStruct.new param_key: "airplane" end def save |