summaryrefslogtreecommitdiff
path: root/sheet_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'sheet_test.go')
-rw-r--r--sheet_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/sheet_test.go b/sheet_test.go
index f218da7..a721472 100644
--- a/sheet_test.go
+++ b/sheet_test.go
@@ -409,7 +409,7 @@ func newSheetWithSet() {
file := NewFile()
file.NewSheet("sheet1")
for i := 0; i < 1000; i++ {
- file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i)
+ _ = file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i)
}
file = nil
}
@@ -426,7 +426,7 @@ func newSheetWithSave() {
file := NewFile()
file.NewSheet("sheet1")
for i := 0; i < 1000; i++ {
- file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i)
+ _ = file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i)
}
- file.Save()
+ _ = file.Save()
}