diff options
author | xuri <xuri.me@gmail.com> | 2021-02-15 00:09:35 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-02-15 00:09:35 +0800 |
commit | 36b7990d6ba1036823abf7a01ec8cf74509d4910 (patch) | |
tree | 118e8a9e0db3d071defb497cd98b2fa85595f7b9 /sheet_test.go | |
parent | ca6b1577a7d1508e61e7084ee67ab0dd759b305e (diff) |
lint issue fixed and new formula function: ATAN, AVERAGE, AVERAGEA, CONCAT, CONCATENATE, COUNT, COUNTBLANK, MAX
Diffstat (limited to 'sheet_test.go')
-rw-r--r-- | sheet_test.go | 6 |
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() } |