Skip to content

Commit 159b5af

Browse files
committed
fix tests
1 parent 1f10b23 commit 159b5af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-schema-compiler/test/integration/postgres/pre-aggregations.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2240,7 +2240,7 @@ describe('PreAggregations', () => {
22402240
[
22412241
{ visitors__source: 'google', vc__count: '1' },
22422242
{ visitors__source: 'some', vc__count: '5' },
2243-
{ visitors__source: null, vc__count: null },
2243+
{ visitors__source: null, vc__count: '0' },
22442244
],
22452245
);
22462246
});
@@ -2281,7 +2281,7 @@ describe('PreAggregations', () => {
22812281
{ visitors__source: 'google', cards__visitor_id: 3, vc__count: '1' },
22822282
{ visitors__source: 'some', cards__visitor_id: 1, vc__count: '3' },
22832283
{ visitors__source: 'some', cards__visitor_id: null, vc__count: '2' },
2284-
{ visitors__source: null, cards__visitor_id: null, vc__count: null },
2284+
{ visitors__source: null, cards__visitor_id: null, vc__count: '0' },
22852285
],
22862286
);
22872287
});

0 commit comments

Comments
 (0)