Skip to content

Commit b670433

Browse files
Fix warnings
1 parent a4c9538 commit b670433

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actionpack/test/controller/action_pack_assertions_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,12 @@ def test_assert_tag_and_url_for
152152

153153
def test_render_file_absolute_path
154154
get :render_file_absolute_path
155-
assert_match /\A= Action Pack/, @response.body
155+
assert_match(/\A= Action Pack/, @response.body)
156156
end
157157

158158
def test_render_file_relative_path
159159
get :render_file_relative_path
160-
assert_match /\A= Action Pack/, @response.body
160+
assert_match(/\A= Action Pack/, @response.body)
161161
end
162162

163163
def test_get_request

0 commit comments

Comments
 (0)