@@ -49,7 +49,7 @@ public void CellsDeleteWorksheetColumnsTest()
4949 string folder = TEMPFOLDER ;
5050 UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
5151 var response = instance . CellsDeleteWorksheetColumns ( name , sheetName , columnIndex , columns , updateReference , folder ) ;
52- Assert . IsInstanceOf < ColumnsResponse > ( response , "response is ColumnsResponse" ) ;
52+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is ColumnsResponse" ) ;
5353 Assert . AreEqual ( response . Code , 200 ) ;
5454 }
5555 /// <summary>
@@ -67,7 +67,7 @@ public void CellsDeleteWorksheetColumnsForNewConstructorTest()
6767 string folder = TEMPFOLDER ;
6868 UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
6969 var response = instance . CellsDeleteWorksheetColumns ( name , sheetName , columnIndex , columns , updateReference , folder ) ;
70- Assert . IsInstanceOf < ColumnsResponse > ( response , "response is ColumnsResponse" ) ;
70+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is ColumnsResponse" ) ;
7171 Assert . AreEqual ( response . Code , 200 ) ;
7272 }
7373 /// <summary>
@@ -591,7 +591,7 @@ public void CellsPostSetWorksheetColumnWidthTest()
591591 string folder = TEMPFOLDER ;
592592 UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
593593 var response = instance . CellsPostSetWorksheetColumnWidth ( name , sheetName , columnIndex , width , folder ) ;
594- Assert . IsInstanceOf < ColumnResponse > ( response , "response is ColumnResponse" ) ;
594+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is ColumnResponse" ) ;
595595 Assert . AreEqual ( response . Status , "OK" ) ;
596596 }
597597
@@ -724,7 +724,7 @@ public void CellsPostUpdateWorksheetRowTest()
724724 string folder = TEMPFOLDER ;
725725 UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
726726 var response = instance . CellsPostUpdateWorksheetRow ( name , sheetName , rowIndex , height , folder ) ;
727- Assert . IsInstanceOf < RowResponse > ( response , "response is RowResponse" ) ;
727+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is RowResponse" ) ;
728728 Assert . AreEqual ( response . Status , "OK" ) ;
729729 }
730730
@@ -804,7 +804,7 @@ public void CellsPutInsertWorksheetColumnsTest()
804804 string folder = TEMPFOLDER ;
805805 UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
806806 var response = instance . CellsPutInsertWorksheetColumns ( name , sheetName , columnIndex , columns , updateReference , folder ) ;
807- Assert . IsInstanceOf < ColumnsResponse > ( response , "response is ColumnsResponse" ) ;
807+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is ColumnsResponse" ) ;
808808 Assert . AreEqual ( response . Status , "OK" ) ;
809809 }
810810
@@ -821,7 +821,7 @@ public void CellsPutInsertWorksheetRowTest()
821821 string folder = TEMPFOLDER ;
822822 UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
823823 var response = instance . CellsPutInsertWorksheetRow ( name , sheetName , rowIndex , folder ) ;
824- Assert . IsInstanceOf < RowResponse > ( response , "response is RowResponse" ) ;
824+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is RowResponse" ) ;
825825 Assert . AreEqual ( response . Status , "OK" ) ;
826826 }
827827
0 commit comments