Skip to content

Commit 850488a

Browse files
committed
test: use double quote for string literal
1 parent 46c6397 commit 850488a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parse/test_processing_instruction.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_after_root
8282
def test_linear_performance_gt
8383
seq = [10000, 50000, 100000, 150000, 200000]
8484
assert_linear_performance(seq, rehearsal: 10) do |n|
85-
REXML::Document.new('<?xml version="1.0" ' + ">" * n + ' ?>')
85+
REXML::Document.new("<?xml version=\"1.0\" " + ">" * n + " ?>")
8686
end
8787
end
8888
end

0 commit comments

Comments
 (0)