Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aletya committed Jan 4, 2025
1 parent 5543802 commit 2dfc2e6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/services/registration/registration-router.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ const APPLICATION = {
hackOutreach: [HackOutreach.INSTAGRAM],
} satisfies RegistrationApplicationRequest;

const APPLICATION_INVALID_EMAIL = Object.assign({}, APPLICATION, {
emailAddress: "invalidemail",
});
const APPLICATION_INVALID_EMAIL = { ...APPLICATION, emailAddress: "invalidemail" };

const UNSUBMITTED_REGISTRATION = { userId: TESTER.id, hasSubmitted: false, ...APPLICATION } satisfies RegistrationApplication;
const UNSUBMITTED_OTHER_REGISTRATION = {
Expand Down

0 comments on commit 2dfc2e6

Please sign in to comment.