From a6c14ae2b5151c479520c6cd9ab2cc282a38db41 Mon Sep 17 00:00:00 2001 From: Max Polsky Date: Wed, 22 Nov 2023 20:46:44 +0200 Subject: [PATCH] test: typo fix --- libs/velo-external-db-core/src/utils/schema_utils.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/velo-external-db-core/src/utils/schema_utils.spec.ts b/libs/velo-external-db-core/src/utils/schema_utils.spec.ts index bdb8119ce..5bfb014c5 100644 --- a/libs/velo-external-db-core/src/utils/schema_utils.spec.ts +++ b/libs/velo-external-db-core/src/utils/schema_utils.spec.ts @@ -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() }) })