Skip to content

Commit

Permalink
test: use double quote for string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 1, 2024
1 parent 50c7252 commit 29027c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parse/test_entity_declaration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def test_empty
def test_linear_performance_gt
seq = [10000, 50000, 100000, 150000, 200000]
assert_linear_performance(seq, rehearsal: 10) do |n|
REXML::Document.new('<!DOCTYPE rubynet [<!ENTITY rbconfig.ruby_version "' + '>' * n + '">]>')
REXML::Document.new("<!DOCTYPE rubynet [<!ENTITY rbconfig.ruby_version \"" + ">" * n + "\">]>")
end
end
end
Expand Down

0 comments on commit 29027c9

Please sign in to comment.