Skip to content
This repository was archived by the owner on Jan 8, 2025. It is now read-only.

Commit c576d22

Browse files
Add back some test changes…
…that were lost in the rebase
1 parent 6e02343 commit c576d22

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: spec/body-parser-spec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ the quick brown $1fox \${2:jumped \${3:over}
563563
index: 1,
564564
content: [],
565565
substitution: {
566-
find: /(.)/,
566+
find: /(.)/g,
567567
replace: [
568568
{escape: 'u'},
569569
{backreference: 1}
@@ -601,7 +601,7 @@ the quick brown $1fox \${2:jumped \${3:over}
601601
index: 1,
602602
content: [],
603603
substitution: {
604-
find: /(.)/,
604+
find: /(.)/g,
605605
replace: [
606606
{escape: 'u'},
607607
{backreference: 1}
@@ -625,7 +625,7 @@ the quick brown $1fox \${2:jumped \${3:over}
625625
index: 1,
626626
content: [],
627627
substitution: {
628-
find: /(.)(.*)/,
628+
find: /(.)(.*)/g,
629629
replace: [
630630
{escape: 'u'},
631631
{backreference: 1},
@@ -651,7 +651,7 @@ the quick brown $1fox \${2:jumped \${3:over}
651651
index: 1,
652652
content: [],
653653
substitution: {
654-
find: /(.)\/(.*)/,
654+
find: /(.)\/(.*)/g,
655655
replace: [
656656
{escape: 'u'},
657657
{backreference: 1},

0 commit comments

Comments
 (0)