Skip to content

Commit 29027c9

Browse files
committed
test: use double quote for string literal
1 parent 50c7252 commit 29027c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parse/test_entity_declaration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def test_empty
521521
def test_linear_performance_gt
522522
seq = [10000, 50000, 100000, 150000, 200000]
523523
assert_linear_performance(seq, rehearsal: 10) do |n|
524-
REXML::Document.new('<!DOCTYPE rubynet [<!ENTITY rbconfig.ruby_version "' + '>' * n + '">]>')
524+
REXML::Document.new("<!DOCTYPE rubynet [<!ENTITY rbconfig.ruby_version \"" + ">" * n + "\">]>")
525525
end
526526
end
527527
end

0 commit comments

Comments
 (0)