Skip to content

Commit eb70644

Browse files
committed
chore: fix incorrect test
1 parent e707638 commit eb70644

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/cubejs-schema-compiler/test/integration/mssql/mssql-cumulative-measures.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,25 +128,25 @@ describe('MSSqlCumulativeMeasures', () => {
128128
expect(await dbRunner.testQuery(query.buildSqlAndParams())).toEqual([
129129
{
130130
visitors__count: 1,
131-
visitors__created_at_day: new Date('2017-01-03T00:00:00.000Z'),
131+
visitors__created_at_day: new Date('2017-01-02T00:00:00.000Z'),
132132
visitors__source: 'some',
133133
visitors__unbounded_count: 1
134134
},
135135
{
136136
visitors__count: 1,
137-
visitors__created_at_day: new Date('2017-01-05T00:00:00.000Z'),
137+
visitors__created_at_day: new Date('2017-01-04T00:00:00.000Z'),
138138
visitors__source: 'some',
139139
visitors__unbounded_count: 2,
140140
},
141141
{
142142
visitors__count: 1,
143-
visitors__created_at_day: new Date('2017-01-06T00:00:00.000Z'),
143+
visitors__created_at_day: new Date('2017-01-05T00:00:00.000Z'),
144144
visitors__source: 'google',
145145
visitors__unbounded_count: 1,
146146
},
147147
{
148148
visitors__count: 2,
149-
visitors__created_at_day: new Date('2017-01-07T00:00:00.000Z'),
149+
visitors__created_at_day: new Date('2017-01-06T00:00:00.000Z'),
150150
visitors__source: null,
151151
visitors__unbounded_count: 3,
152152
}

0 commit comments

Comments
 (0)