Skip to content

Commit

Permalink
fix: rework url encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
v-excelsior committed Sep 12, 2024
1 parent 8dbe9c9 commit 0d257d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"backendless-request": "^0.7.5",
"backendless-request": "^0.7.9",
"backendless-rt-client": "0.3.0"
}
}
4 changes: 2 additions & 2 deletions test/unit/specs/users/emails.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('<Users> Emails', function() {

expect(req1).to.deep.include({
method : 'POST',
path : `${APP_PATH}/users/resendconfirmation/foo%40bar.com`,
path : `${APP_PATH}/users/resendconfirmation/foo@bar.com`,
headers: {},
body : undefined
})
Expand Down Expand Up @@ -110,7 +110,7 @@ describe('<Users> Emails', function() {

expect(req1).to.deep.include({
method : 'POST',
path : `${APP_PATH}/users/createEmailConfirmationURL/foo%40bar.com`,
path : `${APP_PATH}/users/createEmailConfirmationURL/foo@bar.com`,
headers: {},
body : undefined
})
Expand Down

0 comments on commit 0d257d6

Please sign in to comment.