diff options
Diffstat (limited to 'excelize_test.go')
-rw-r--r-- | excelize_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/excelize_test.go b/excelize_test.go index c7f5cad..b78aac8 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -1259,7 +1259,7 @@ func fillCells(f *File, sheet string, colCount, rowCount int) { for row := 1; row <= rowCount; row++ { cell, _ := CoordinatesToCellName(col, row) if err := f.SetCellStr(sheet, cell, cell); err != nil { - println(err.Error()) + fmt.Println(err) } } } |