@@ -115,7 +115,7 @@ public void CellsChartsDeleteWorksheetDeleteChartTest()
115115 string folder = TEMPFOLDER ;
116116 UpdateDataFile ( instance , folder , name ) ;
117117 var response = instance . CellsChartsDeleteWorksheetDeleteChart ( name , sheetName , chartIndex , folder ) ;
118- Assert . IsInstanceOf < ChartsResponse > ( response , "response is ChartsResponse" ) ;
118+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is ChartsResponse" ) ;
119119 Assert . AreEqual ( response . Code , 200 ) ;
120120 }
121121
@@ -225,7 +225,7 @@ public void CellsChartsPostWorksheetChartLegendTest()
225225 string folder = TEMPFOLDER ;
226226 UpdateDataFile ( instance , folder , name ) ;
227227 var response = instance . CellsChartsPostWorksheetChartLegend ( name , sheetName , chartIndex , legend , folder ) ;
228- Assert . IsInstanceOf < LegendResponse > ( response , "response is LegendResponse" ) ;
228+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is LegendResponse" ) ;
229229 Assert . AreEqual ( response . Code , 200 ) ;
230230 }
231231
@@ -244,7 +244,7 @@ public void CellsChartsPostWorksheetChartTitleTest()
244244 string folder = TEMPFOLDER ;
245245 UpdateDataFile ( instance , folder , name ) ;
246246 var response = instance . CellsChartsPostWorksheetChartTitle ( name , sheetName , chartIndex , title , folder ) ;
247- Assert . IsInstanceOf < TitleResponse > ( response , "response is TitleResponse" ) ;
247+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is TitleResponse" ) ;
248248 Assert . AreEqual ( response . Code , 200 ) ;
249249 }
250250
@@ -270,7 +270,7 @@ public void CellsChartsPutWorksheetAddChartTest()
270270 string folder = TEMPFOLDER ;
271271 UpdateDataFile ( instance , folder , name ) ;
272272 var response = instance . CellsChartsPutWorksheetAddChart ( name , sheetName , chartType , upperLeftRow , upperLeftColumn , lowerRightRow , lowerRightColumn , area , isVertical , categoryData , isAutoGetSerialName , title , folder ) ;
273- Assert . IsInstanceOf < ChartsResponse > ( response , "response is ChartsResponse" ) ;
273+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is ChartsResponse" ) ;
274274 Assert . AreEqual ( response . Code , 200 ) ;
275275 }
276276
@@ -306,7 +306,7 @@ public void CellsChartsPutWorksheetChartTitleTest()
306306 string folder = TEMPFOLDER ;
307307 UpdateDataFile ( instance , folder , name ) ;
308308 var response = instance . CellsChartsPutWorksheetChartTitle ( name , sheetName , chartIndex , title , folder ) ;
309- Assert . IsInstanceOf < TitleResponse > ( response , "response is TitleResponse" ) ;
309+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is TitleResponse" ) ;
310310 Assert . AreEqual ( response . Code , 200 ) ;
311311 }
312312
0 commit comments