Skip to content

Commit b93d790

Browse files
committed
test: use double quote for string literal
1 parent 0fbe7d5 commit b93d790

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/parse/test_attribute_list_declaration.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ class TestParseAttributeListDeclaration < Test::Unit::TestCase
1010
def test_linear_performance_gt
1111
seq = [10000, 50000, 100000, 150000, 200000]
1212
assert_linear_performance(seq, rehearsal: 10) do |n|
13-
REXML::Document.new('<!DOCTYPE schema SYSTEM "foo.dtd" [<!ATTLIST ' + " " * n + ' root v CDATA #FIXED "test">]>')
13+
REXML::Document.new("<!DOCTYPE schema SYSTEM \"foo.dtd\" [<!ATTLIST " +
14+
" " * n +
15+
" root v CDATA #FIXED \"test\">]>")
1416
end
1517
end
1618
end

0 commit comments

Comments
 (0)