Skip to content

Commit

Permalink
chore: replace var to const
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwal-ab committed Sep 26, 2023
1 parent 7b946a1 commit 2d72cfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v0/destinations/mssql/transform.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { getDataType } = require('../../../../src/warehouse/index');
const { getDataTypeOverride } = require('./transform');

var testCases = [
const testCases = [
{
name: 'normalInt',
data: 1,
Expand Down
2 changes: 1 addition & 1 deletion src/v0/destinations/postgres/transform.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { getDataType } = require('../../../../src/warehouse/index');
const { getDataTypeOverride } = require('./transform');

var testCases = [
const testCases = [
{
name: 'normalInt',
data: 1,
Expand Down

0 comments on commit 2d72cfd

Please sign in to comment.