Skip to content

Commit

Permalink
Update testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
zzthian committed Nov 4, 2023
1 parent eb03b56 commit 7626296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/user_profile_backend/test/deleteUser.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('Delete User', () => {
it('should return success message when user is deleted', (done) => {
const request = {
body: {
user_id: 100,
user_data : {user_id: 100},
},
}

Expand All @@ -55,7 +55,7 @@ describe('Delete User', () => {
it('should return a 404 error message if the user does not exist', (done) => {
const request = {
body: {
user_id: 2,
user_data: {user_id: 2},
},
}

Expand Down

0 comments on commit 7626296

Please sign in to comment.