Skip to content

Commit

Permalink
fix: matched response to test case
Browse files Browse the repository at this point in the history
  • Loading branch information
MinjaeKimmm committed Nov 26, 2024
1 parent be4159d commit 5b32009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const agreeOnTermsOfServiceHandler: RequestHandler = async (

user.agreeOnTermsOfService = true;
await user.save();
return res.status(200).send("Users/agreeOnTermsOfService : agree successful");
return res.status(200).send("Users/agreeOnTermsOfService : agree on Terms of Service successful");
} catch {
return res
.status(500)
Expand Down

0 comments on commit 5b32009

Please sign in to comment.