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 246233f..edbc4bd 100644
--- a/rows_test.go
+++ b/rows_test.go
@@ -835,7 +835,7 @@ func TestGetValueFromNumber(t *testing.T) {
assert.Equal(t, "2.22", val)
c = &xlsxC{T: "n", V: "2.220000ddsf0000000002-r"}
- val, err = c.getValueFrom(f, d)
+ _, err = c.getValueFrom(f, d)
assert.NotNil(t, err)
assert.Equal(t, "strconv.ParseFloat: parsing \"2.220000ddsf0000000002-r\": invalid syntax", err.Error())
}