Skip to content

Commit

Permalink
v7.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
v-excelsior committed Aug 27, 2024
1 parent c30a7a1 commit 8dbe9c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backendless",
"version": "7.3.3",
"version": "7.3.4",
"description": "Backendless JavaScript SDK for Node.js and the browser",
"browser": "dist/backendless.js",
"main": "lib/index.js",
Expand Down Expand Up @@ -91,7 +91,7 @@
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"backendless-request": "^0.7.1",
"backendless-request": "^0.7.5",
"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@bar.com`,
path : `${APP_PATH}/users/resendconfirmation/foo%40bar.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@bar.com`,
path : `${APP_PATH}/users/createEmailConfirmationURL/foo%40bar.com`,
headers: {},
body : undefined
})
Expand Down

0 comments on commit 8dbe9c9

Please sign in to comment.