@@ -49,7 +49,7 @@ public void CellsDeleteWorksheetColumnsTest()
49
49
string folder = TEMPFOLDER ;
50
50
UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
51
51
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" ) ;
53
53
Assert . AreEqual ( response . Code , 200 ) ;
54
54
}
55
55
/// <summary>
@@ -67,7 +67,7 @@ public void CellsDeleteWorksheetColumnsForNewConstructorTest()
67
67
string folder = TEMPFOLDER ;
68
68
UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
69
69
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" ) ;
71
71
Assert . AreEqual ( response . Code , 200 ) ;
72
72
}
73
73
/// <summary>
@@ -591,7 +591,7 @@ public void CellsPostSetWorksheetColumnWidthTest()
591
591
string folder = TEMPFOLDER ;
592
592
UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
593
593
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" ) ;
595
595
Assert . AreEqual ( response . Status , "OK" ) ;
596
596
}
597
597
@@ -724,7 +724,7 @@ public void CellsPostUpdateWorksheetRowTest()
724
724
string folder = TEMPFOLDER ;
725
725
UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
726
726
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" ) ;
728
728
Assert . AreEqual ( response . Status , "OK" ) ;
729
729
}
730
730
@@ -804,7 +804,7 @@ public void CellsPutInsertWorksheetColumnsTest()
804
804
string folder = TEMPFOLDER ;
805
805
UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
806
806
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" ) ;
808
808
Assert . AreEqual ( response . Status , "OK" ) ;
809
809
}
810
810
@@ -821,7 +821,7 @@ public void CellsPutInsertWorksheetRowTest()
821
821
string folder = TEMPFOLDER ;
822
822
UpdateDataFile ( instance , TEMPFOLDER , BOOK1 ) ;
823
823
var response = instance . CellsPutInsertWorksheetRow ( name , sheetName , rowIndex , folder ) ;
824
- Assert . IsInstanceOf < RowResponse > ( response , "response is RowResponse" ) ;
824
+ Assert . IsInstanceOf < CellsCloudResponse > ( response , "response is RowResponse" ) ;
825
825
Assert . AreEqual ( response . Status , "OK" ) ;
826
826
}
827
827
0 commit comments