summaryrefslogtreecommitdiff
path: root/test/substitutions_test.rb
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2021-06-02 23:42:21 -0600
committerDan Allen <dan.j.allen@gmail.com>2021-06-03 00:42:35 -0600
commit76d1e95aa2a79cd113a4bbc56a703004df08896e (patch)
tree10f11df8d1a9e7cf97b08dbf2802b5911430a372 /test/substitutions_test.rb
parent296b947bc007f9a09f45a615bb7243eabc6978f5 (diff)
use comma after last entry in multi-line array [skip ci]
Diffstat (limited to 'test/substitutions_test.rb')
-rw-r--r--test/substitutions_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/substitutions_test.rb b/test/substitutions_test.rb
index 2b218b34..afeb8e9e 100644
--- a/test/substitutions_test.rb
+++ b/test/substitutions_test.rb
@@ -2221,7 +2221,7 @@ context 'Substitutions' do
%(It's Mary`'s little lamb.),
%(consecutive single quotes '' are not modified),
%(he is 6' tall),
- %(\\`')
+ %(\\`'),
]
expected = [
%(&#8217;Twas the night),
@@ -2233,7 +2233,7 @@ context 'Substitutions' do
%(It&#8217;s Mary&#8217;s little lamb.),
%(consecutive single quotes '' are not modified),
%(he is 6' tall),
- %(`')
+ %(`'),
]
given.size.times do |i|
para = block_from_string given[i]