diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-11-29 02:51:31 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-11-29 02:51:31 -0500 |
commit | e3d658e319bd0ab179fc0e12329ed4dc18bce584 (patch) | |
tree | 409aa4daaeff90eb442a4405d6b133c97de8a297 /actionpack | |
parent | d41d586e4e00990a8b5e1e62b75857fea0effaf4 (diff) | |
download | rails-e3d658e319bd0ab179fc0e12329ed4dc18bce584.tar.gz rails-e3d658e319bd0ab179fc0e12329ed4dc18bce584.tar.bz2 rails-e3d658e319bd0ab179fc0e12329ed4dc18bce584.zip |
Fix tests: Remove ogx mime type from tests
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/dispatch/mime_type_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/mime_type_test.rb b/actionpack/test/dispatch/mime_type_test.rb index c0b4034d28..6854783386 100644 --- a/actionpack/test/dispatch/mime_type_test.rb +++ b/actionpack/test/dispatch/mime_type_test.rb @@ -51,7 +51,7 @@ class MimeTypeTest < ActiveSupport::TestCase test "parse application with trailing star" do accept = "application/*" - expect = [Mime[:html], Mime[:js], Mime[:xml], Mime[:rss], Mime[:atom], Mime[:yaml], Mime[:url_encoded_form], Mime[:json], Mime[:pdf], Mime[:zip], Mime[:gzip], Mime[:ogx]] + expect = [Mime[:html], Mime[:js], Mime[:xml], Mime[:rss], Mime[:atom], Mime[:yaml], Mime[:url_encoded_form], Mime[:json], Mime[:pdf], Mime[:zip], Mime[:gzip]] parsed = Mime::Type.parse(accept) assert_equal expect.map(&:to_s).sort!, parsed.map(&:to_s).sort! end |