Merge pull request #51736 from maniSHarma7575/51689-remove-warning-from-render-test

[FIX] Remove warning for frozen string literal from the render test for action view
This commit is contained in:
Yasuo Honda 2024-05-05 21:52:10 +09:00 committed by GitHub
commit 343e781884
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ module RenderTestCases
end
def test_render_mutate_string_literal
assert_equal "foobar", @view.render(inline: "'foo' << 'bar'", type: :ruby)
assert_equal "foobar", @view.render(inline: "+'foo' << 'bar'", type: :ruby)
end
end