@@ -205,7 +205,7 @@ describe(
205205
206206 const { compiler, joinGraph, cubeEvaluator } =
207207 prepareCompiler ( getCube ( true , false , false ) ) ;
208-
208+
209209 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
210210 await compiler . compile ( ) ;
211211 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
@@ -266,7 +266,7 @@ describe(
266266
267267 const { compiler, joinGraph, cubeEvaluator } =
268268 prepareCompiler ( getCube ( false , true , false ) ) ;
269-
269+
270270 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
271271 await compiler . compile ( ) ;
272272 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
@@ -294,7 +294,7 @@ describe(
294294 expect ( query . indexOf ( 'cube__hourly_data' ) ) . toEqual ( - 1 ) ;
295295 } ) ;
296296
297- it ( 'hour query with the `week` granularity match `HourlyData `' , async ( ) => {
297+ it ( 'hour query with the `week` granularity match `DailyData `' , async ( ) => {
298298 await compiler . compile ( ) ;
299299 const [ , , , request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
300300 const [ query ] = request . buildSqlAndParams ( ) ;
@@ -327,7 +327,7 @@ describe(
327327
328328 const { compiler, joinGraph, cubeEvaluator } =
329329 prepareCompiler ( getCube ( false , false , true ) ) ;
330-
330+
331331 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
332332 await compiler . compile ( ) ;
333333 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
@@ -388,7 +388,7 @@ describe(
388388
389389 const { compiler, joinGraph, cubeEvaluator } =
390390 prepareCompiler ( getCube ( true , true , false ) ) ;
391-
391+
392392 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
393393 await compiler . compile ( ) ;
394394 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
@@ -449,7 +449,7 @@ describe(
449449
450450 const { compiler, joinGraph, cubeEvaluator } =
451451 prepareCompiler ( getCube ( true , false , true ) ) ;
452-
452+
453453 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
454454 await compiler . compile ( ) ;
455455 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
@@ -510,7 +510,7 @@ describe(
510510
511511 const { compiler, joinGraph, cubeEvaluator } =
512512 prepareCompiler ( getCube ( false , true , true ) ) ;
513-
513+
514514 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
515515 await compiler . compile ( ) ;
516516 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
@@ -571,7 +571,7 @@ describe(
571571
572572 const { compiler, joinGraph, cubeEvaluator } =
573573 prepareCompiler ( getCube ( true , true , true ) ) ;
574-
574+
575575 it ( 'month query with the `month` granularity match `MonthlyData`' , async ( ) => {
576576 await compiler . compile ( ) ;
577577 const [ request ] = getQueries ( compiler , joinGraph , cubeEvaluator ) ;
0 commit comments