diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-01-13 06:33:25 -0800 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-01-13 06:33:25 -0800 |
commit | 050f100d07e12466899c2ee04e3f8872b7e316f1 (patch) | |
tree | 90d2661d4153d682e50a42cdc3a90649e46406f5 /actionpack/test/dispatch/static_test.rb | |
parent | e95031f55dd54945abebe6e9f8a12e428ada4146 (diff) | |
parent | 35e56f6fa535288abf1de7fa70c2faed5e2d88ff (diff) | |
download | rails-050f100d07e12466899c2ee04e3f8872b7e316f1.tar.gz rails-050f100d07e12466899c2ee04e3f8872b7e316f1.tar.bz2 rails-050f100d07e12466899c2ee04e3f8872b7e316f1.zip |
Merge pull request #13693 from gaurish/typo
[JRuby] Fix incorrect RUBY_ENGINE value
Diffstat (limited to 'actionpack/test/dispatch/static_test.rb')
-rw-r--r-- | actionpack/test/dispatch/static_test.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/test/dispatch/static_test.rb b/actionpack/test/dispatch/static_test.rb index d83461e52f..5bd1806b21 100644 --- a/actionpack/test/dispatch/static_test.rb +++ b/actionpack/test/dispatch/static_test.rb @@ -37,10 +37,8 @@ module StaticTests end def test_served_static_file_with_non_english_filename - if RUBY_ENGINE == 'jruby ' - skip "Stop skipping if following bug gets fixed: " \ + jruby_skip "Stop skipping if following bug gets fixed: " \ "http://jira.codehaus.org/browse/JRUBY-7192" - end assert_html "means hello in Japanese\n", get("/foo/#{Rack::Utils.escape("こんにちは.html")}") end |