Skip to content

Commit

Permalink
Add back some test changes…
Browse files Browse the repository at this point in the history
…that were lost in the rebase
  • Loading branch information
savetheclocktower committed Feb 23, 2023
1 parent 6e02343 commit c576d22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/body-parser-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ the quick brown $1fox \${2:jumped \${3:over}
index: 1,
content: [],
substitution: {
find: /(.)/,
find: /(.)/g,
replace: [
{escape: 'u'},
{backreference: 1}
Expand Down Expand Up @@ -601,7 +601,7 @@ the quick brown $1fox \${2:jumped \${3:over}
index: 1,
content: [],
substitution: {
find: /(.)/,
find: /(.)/g,
replace: [
{escape: 'u'},
{backreference: 1}
Expand All @@ -625,7 +625,7 @@ the quick brown $1fox \${2:jumped \${3:over}
index: 1,
content: [],
substitution: {
find: /(.)(.*)/,
find: /(.)(.*)/g,
replace: [
{escape: 'u'},
{backreference: 1},
Expand All @@ -651,7 +651,7 @@ the quick brown $1fox \${2:jumped \${3:over}
index: 1,
content: [],
substitution: {
find: /(.)\/(.*)/,
find: /(.)\/(.*)/g,
replace: [
{escape: 'u'},
{backreference: 1},
Expand Down

0 comments on commit c576d22

Please sign in to comment.