Skip to content

Commit

Permalink
test: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MXPOL committed Nov 22, 2023
1 parent bfefb1e commit a6c14ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/velo-external-db-core/src/utils/schema_utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ describe('Schema utils functions', () => {
})

describe('Precision for columns', () => {
test('_id column should have a precision of 50', () => { expect(fieldKeyToPrecision('_id')).toEqual('50') })
test('_owner column should have a precision of 50', () => { expect(fieldKeyToPrecision('_owner')).toEqual('50') })
test('_id column should have a precision of 50', () => { expect(fieldKeyToPrecision('_id')).toEqual(50) })
test('_owner column should have a precision of 50', () => { expect(fieldKeyToPrecision('_owner')).toEqual(50) })
test('other column should not have a precision', () => { expect(fieldKeyToPrecision(ctx.column.name)).toBeUndefined() })
})

Expand Down

0 comments on commit a6c14ae

Please sign in to comment.