diff options
author | xuri <xuri.me@gmail.com> | 2021-08-15 00:06:40 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-08-15 00:06:40 +0800 |
commit | 48c16de8bf74df0fa94a30d29e2e7e3446d48433 (patch) | |
tree | 329a2e4ab896982581bd348a1700d75aeb40a517 /date_test.go | |
parent | f6f14f507ee1adf4883cb1b12f27932a63afb286 (diff) |
Improve security and simplify code
- Make variable name more semantic
- Reduce cyclomatic complexities for the formula calculate function
- Support specified unzip size limit on open file options, avoid zip bombs vulnerability attack
- Typo fix for documentation and error message
Diffstat (limited to 'date_test.go')
-rw-r--r-- | date_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/date_test.go b/date_test.go index 38898b0..2addc4a 100644 --- a/date_test.go +++ b/date_test.go @@ -85,5 +85,5 @@ func TestExcelDateToTime(t *testing.T) { } // Check error case _, err := ExcelDateToTime(-1, false) - assert.EqualError(t, err, "invalid date value -1.000000, negative values are not supported supported") + assert.EqualError(t, err, "invalid date value -1.000000, negative values are not supported") } |