Skip to content

Commit f180225

Browse files
committed
fix
1 parent 8a62e77 commit f180225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-schema-compiler/test/integration/postgres/sql-generation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3405,7 +3405,7 @@ SELECT 1 AS revenue, cast('2024-01-01' AS timestamp) as time UNION ALL
34053405
console.log(queryAndParams);
34063406
expect(queryAndParams[0]).not.toContain('COALESCE');
34073407

3408-
return dbRunner.testQuery(queryAndParams).then(res => {
3408+
await dbRunner.testQuery(queryAndParams).then(res => {
34093409
console.log(JSON.stringify(res));
34103410
expect(res).toEqual(
34113411
[{

0 commit comments

Comments
 (0)