Skip to content

Commit

Permalink
fix: update tc for new comma delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin9foong committed Jan 7, 2025
1 parent 2c549d0 commit 9974904
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4866,7 +4866,7 @@ describe('admin-form.controller', () => {
cloneDeep(MOCK_BASE_REQ),
{
body: {
whitelistCsvString: `${MOCK_LOWERCASE_NRIC}\r\n${MOCK_VALID_FIN}\r\n${MOCK_VALID_UEN}`,
whitelistCsvString: `${MOCK_LOWERCASE_NRIC},${MOCK_VALID_FIN},${MOCK_VALID_UEN}`,
},
},
)
Expand Down Expand Up @@ -4903,7 +4903,7 @@ describe('admin-form.controller', () => {
cloneDeep(MOCK_BASE_REQ),
{
body: {
whitelistCsvString: `${MOCK_VALID_FIN}\r\n${MOCK_LOWERCASE_NRIC}\r\n${MOCK_LOWERCASE_UEN}`,
whitelistCsvString: `${MOCK_VALID_FIN},${MOCK_LOWERCASE_NRIC},${MOCK_LOWERCASE_UEN}`,
},
},
)
Expand Down Expand Up @@ -4946,7 +4946,7 @@ describe('admin-form.controller', () => {
cloneDeep(MOCK_BASE_REQ),
{
body: {
whitelistCsvString: `${MOCK_VALID_NRIC}\r\n${MOCK_VALID_FIN}\r\n${MOCK_VALID_UEN}`,
whitelistCsvString: `${MOCK_VALID_NRIC},${MOCK_VALID_FIN},${MOCK_VALID_UEN}`,
},
},
)
Expand Down

0 comments on commit 9974904

Please sign in to comment.