@@ -39,7 +39,7 @@ export const runCreateVisTests = () => {
3939
4040 it ( 'should create a table visualization using a query with multiple fields' , ( ) => {
4141 const query = `source=${ datasetName } | stats count() by category, response_time | head 10` ;
42- cy . explore . createVisualizationWithQuery ( query , 'Table ' , datasetName , {
42+ cy . explore . createVisualizationWithQuery ( query , 'table ' , datasetName , {
4343 shouldManualSelectChartType : true ,
4444 } ) ;
4545
@@ -48,7 +48,7 @@ export const runCreateVisTests = () => {
4848
4949 it ( 'should toggle column filter and the changes reflect immediately to the table visualization' , ( ) => {
5050 const query = `source=${ datasetName } | stats count() by category, response_time | head 10` ;
51- cy . explore . createVisualizationWithQuery ( query , 'Table ' , datasetName , {
51+ cy . explore . createVisualizationWithQuery ( query , 'table ' , datasetName , {
5252 shouldManualSelectChartType : true ,
5353 } ) ;
5454
@@ -69,7 +69,7 @@ export const runCreateVisTests = () => {
6969
7070 it ( 'should add threshold coloring and reflect immediately to the table visualization' , ( ) => {
7171 const query = `source=${ datasetName } | stats count() by category | head 5` ;
72- cy . explore . createVisualizationWithQuery ( query , 'Table ' , datasetName , {
72+ cy . explore . createVisualizationWithQuery ( query , 'table ' , datasetName , {
7373 shouldManualSelectChartType : true ,
7474 } ) ;
7575
@@ -93,7 +93,7 @@ export const runCreateVisTests = () => {
9393
9494 it ( 'should create data links that turn cell values into clickable links' , ( ) => {
9595 const query = `source=${ datasetName } | stats count() by category | head 10` ;
96- cy . explore . createVisualizationWithQuery ( query , 'Table ' , datasetName , {
96+ cy . explore . createVisualizationWithQuery ( query , 'table ' , datasetName , {
9797 shouldManualSelectChartType : true ,
9898 } ) ;
9999
0 commit comments