diff options
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/action_pack_assertions_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/action_pack_assertions_test.rb b/actionpack/test/controller/action_pack_assertions_test.rb index ba4efdd7ee..22a410db94 100644 --- a/actionpack/test/controller/action_pack_assertions_test.rb +++ b/actionpack/test/controller/action_pack_assertions_test.rb @@ -152,12 +152,12 @@ class ActionPackAssertionsControllerTest < ActionController::TestCase def test_render_file_absolute_path get :render_file_absolute_path - assert_match /\A= Action Pack/, @response.body + assert_match(/\A= Action Pack/, @response.body) end def test_render_file_relative_path get :render_file_relative_path - assert_match /\A= Action Pack/, @response.body + assert_match(/\A= Action Pack/, @response.body) end def test_get_request |