summaryrefslogtreecommitdiff
path: root/rows_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'rows_test.go')
-rw-r--r--rows_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rows_test.go b/rows_test.go
index 76823ba..423932f 100644
--- a/rows_test.go
+++ b/rows_test.go
@@ -1048,7 +1048,7 @@ func TestNumberFormats(t *testing.T) {
{"A32", numFmt40, -8.8888666665555487, "(8.89)"},
} {
cell, styleID, value, expected := cases[0].(string), cases[1].(int), cases[2], cases[3].(string)
- f.SetCellStyle("Sheet1", cell, cell, styleID)
+ assert.NoError(t, f.SetCellStyle("Sheet1", cell, cell, styleID))
assert.NoError(t, f.SetCellValue("Sheet1", cell, value))
result, err := f.GetCellValue("Sheet1", cell)
assert.NoError(t, err)