Skip to content

Commit 995c326

Browse files
committed
fix
1 parent dcabac1 commit 995c326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-schema-compiler/test/integration/postgres/pre-agg-allow-non-strict.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ describe(
392392
expect(query.indexOf('cube__hourly_data')).toBeGreaterThanOrEqual(0);
393393
});
394394

395-
it('minute query with the `week` granularity match `HourlyData` 11', async () => {
395+
it('minute query with the `week` granularity match `HourlyData`', async () => {
396396
await compiler.compile();
397397
const [,,,, request] = getQueries(compiler, joinGraph, cubeEvaluator);
398398
const [query] = request.buildSqlAndParams();
@@ -410,7 +410,7 @@ describe(
410410
expect(query.indexOf('cube__hourly_data')).toBeGreaterThanOrEqual(0);
411411
});
412412

413-
it('query with no granularity match HourlyData 2222', async () => {
413+
it('query with no granularity match HourlyData', async () => {
414414
await compiler.compile();
415415
const [,,,,,, request] = getQueries(compiler, joinGraph, cubeEvaluator);
416416
const [query] = request.buildSqlAndParams();

0 commit comments

Comments
 (0)