Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-Arc committed Oct 18, 2024
1 parent 6757a4c commit 4856fb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/server/src/utils/__tests__/parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ describe('parseExcel()', () => {
note: 'Ballyhoo',
custom: {
user0: 'a0',
user1: 'a1',
User1: 'a1',
user2: 'a2',
user3: 'a3',
user4: 'a4',
Expand Down Expand Up @@ -1010,7 +1010,7 @@ describe('parseExcel()', () => {

const existingCustomFields: CustomFields = {
user0: { type: 'string', colour: 'red', label: 'user0' },
user1: { type: 'string', colour: 'green', label: 'user1' },
User1: { type: 'string', colour: 'green', label: 'user1' },
user2: { type: 'string', colour: 'blue', label: 'user2' },
};

Expand All @@ -1021,7 +1021,7 @@ describe('parseExcel()', () => {
colour: 'red',
label: 'user0',
},
user1: {
User1: {
type: 'string',
colour: 'green',
label: 'User1',
Expand Down

0 comments on commit 4856fb1

Please sign in to comment.