From fae9ad9c712decef70b379f5aa1faa0149902831 Mon Sep 17 00:00:00 2001 From: Olli Jokinen Date: Thu, 28 Jul 2011 15:39:04 +0300 Subject: fixed test case test_render_json_with_callback to use content_type application/javascript --- actionpack/test/controller/render_json_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/test/controller/render_json_test.rb') diff --git a/actionpack/test/controller/render_json_test.rb b/actionpack/test/controller/render_json_test.rb index fc604a2db3..d94fbb9f96 100644 --- a/actionpack/test/controller/render_json_test.rb +++ b/actionpack/test/controller/render_json_test.rb @@ -101,7 +101,7 @@ class RenderJsonTest < ActionController::TestCase def test_render_json_with_callback get :render_json_hello_world_with_callback assert_equal 'alert({"hello":"world"})', @response.body - assert_equal 'application/json', @response.content_type + assert_equal 'application/javascript', @response.content_type end def test_render_json_with_custom_content_type -- cgit v1.2.3