diff options
author | xuri <xuri.me@gmail.com> | 2021-10-15 21:45:46 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-10-15 21:45:46 +0800 |
commit | de38402f74bea9557188ad2c6f31c3127fd1bbfe (patch) | |
tree | 6c9363697638d1b78012a80bc6ce0fb45181e4bc /rows_test.go | |
parent | 58fd279dc845ebd9ccd4ba336d7c664824e70e43 (diff) |
This closes #1031, fix small float parsed error in some case
- new formula function: YEARFRAC, ref #65
- update the codecov version
- remove unused variable
Diffstat (limited to 'rows_test.go')
-rw-r--r-- | rows_test.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/rows_test.go b/rows_test.go index 0ebe59d..19ed866 100644 --- a/rows_test.go +++ b/rows_test.go @@ -884,11 +884,6 @@ func TestGetValueFromNumber(t *testing.T) { } } -func TestRoundPrecision(t *testing.T) { - _, err := roundPrecision("") - assert.EqualError(t, err, "strconv.ParseFloat: parsing \"\": invalid syntax") -} - func TestErrSheetNotExistError(t *testing.T) { err := ErrSheetNotExist{SheetName: "Sheet1"} assert.EqualValues(t, err.Error(), "sheet Sheet1 is not exist") |