Skip to content

Commit 0d257d6

Browse files
committed
fix: rework url encoding
1 parent 8dbe9c9 commit 0d257d6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
},
9292
"dependencies": {
9393
"@babel/runtime": "^7.21.5",
94-
"backendless-request": "^0.7.5",
94+
"backendless-request": "^0.7.9",
9595
"backendless-rt-client": "0.3.0"
9696
}
9797
}

test/unit/specs/users/emails.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('<Users> Emails', function() {
5151

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

111111
expect(req1).to.deep.include({
112112
method : 'POST',
113-
path : `${APP_PATH}/users/createEmailConfirmationURL/foo%40bar.com`,
113+
path : `${APP_PATH}/users/createEmailConfirmationURL/foo@bar.com`,
114114
headers: {},
115115
body : undefined
116116
})

0 commit comments

Comments
 (0)