diff options
author | Kir Shatrov <shatrov@me.com> | 2017-07-23 18:36:41 +0300 |
---|---|---|
committer | Kir Shatrov <shatrov@me.com> | 2017-07-24 11:53:43 +0300 |
commit | 424117281e72284539a10d26162b8ce9e95cf865 (patch) | |
tree | 2d84bcb886b1b4eb436ab3a639254a08f2a9a444 /actionview/test/template/testing | |
parent | 2ee46434e0e8f81b1a852d7b190a2f7b0ba67228 (diff) | |
download | rails-424117281e72284539a10d26162b8ce9e95cf865.tar.gz rails-424117281e72284539a10d26162b8ce9e95cf865.tar.bz2 rails-424117281e72284539a10d26162b8ce9e95cf865.zip |
Use frozen string literal in actionview/
Diffstat (limited to 'actionview/test/template/testing')
-rw-r--r-- | actionview/test/template/testing/fixture_resolver_test.rb | 2 | ||||
-rw-r--r-- | actionview/test/template/testing/null_resolver_test.rb | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/actionview/test/template/testing/fixture_resolver_test.rb b/actionview/test/template/testing/fixture_resolver_test.rb index effe453fc0..9954e3500d 100644 --- a/actionview/test/template/testing/fixture_resolver_test.rb +++ b/actionview/test/template/testing/fixture_resolver_test.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + require "abstract_unit" class FixtureResolverTest < ActiveSupport::TestCase diff --git a/actionview/test/template/testing/null_resolver_test.rb b/actionview/test/template/testing/null_resolver_test.rb index 5346fd3368..53364c1d90 100644 --- a/actionview/test/template/testing/null_resolver_test.rb +++ b/actionview/test/template/testing/null_resolver_test.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + require "abstract_unit" class NullResolverTest < ActiveSupport::TestCase |