Skip to content

Commit

Permalink
code polish (spaces + correct test name)
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Jan 15, 2025
1 parent c8f24f7 commit dcd283a
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(true, false, false));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down Expand Up @@ -266,7 +266,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(false, true, false));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down Expand Up @@ -294,7 +294,7 @@ describe(
expect(query.indexOf('cube__hourly_data')).toEqual(-1);
});

it('hour query with the `week` granularity match `HourlyData`', async () => {
it('hour query with the `week` granularity match `DailyData`', async () => {
await compiler.compile();
const [,,, request] = getQueries(compiler, joinGraph, cubeEvaluator);
const [query] = request.buildSqlAndParams();
Expand Down Expand Up @@ -327,7 +327,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(false, false, true));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down Expand Up @@ -388,7 +388,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(true, true, false));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down Expand Up @@ -449,7 +449,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(true, false, true));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down Expand Up @@ -510,7 +510,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(false, true, true));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down Expand Up @@ -571,7 +571,7 @@ describe(

const { compiler, joinGraph, cubeEvaluator } =
prepareCompiler(getCube(true, true, true));

it('month query with the `month` granularity match `MonthlyData`', async () => {
await compiler.compile();
const [request] = getQueries(compiler, joinGraph, cubeEvaluator);
Expand Down

0 comments on commit dcd283a

Please sign in to comment.