diff options
author | José Valim <jose.valim@gmail.com> | 2010-11-28 22:40:32 +0100 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-08 14:14:26 -0800 |
commit | 6b1018526fb304727ee4191afc2d8a5e29e49eea (patch) | |
tree | 33e57e76341028a8bd42bf8cac33b038fbd3dcf2 /actionpack/test/template | |
parent | b93c590297ba65a6c5b18655a7790163abcb06f1 (diff) | |
download | rails-6b1018526fb304727ee4191afc2d8a5e29e49eea.tar.gz rails-6b1018526fb304727ee4191afc2d8a5e29e49eea.tar.bz2 rails-6b1018526fb304727ee4191afc2d8a5e29e49eea.zip |
Use Mime::Type references.
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/lookup_context_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/lookup_context_test.rb b/actionpack/test/template/lookup_context_test.rb index f3b1335000..8d063e66b0 100644 --- a/actionpack/test/template/lookup_context_test.rb +++ b/actionpack/test/template/lookup_context_test.rb @@ -47,7 +47,7 @@ class LookupContextTest < ActiveSupport::TestCase end test "handles */* formats" do - @lookup_context.formats = [:"*/*"] + @lookup_context.formats = ["*/*"] assert_equal Mime::SET, @lookup_context.formats end |