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 /errors_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 'errors_test.go')
-rw-r--r-- | errors_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/errors_test.go b/errors_test.go index 207e80a..971802f 100644 --- a/errors_test.go +++ b/errors_test.go @@ -21,5 +21,5 @@ func TestNewInvalidCellNameError(t *testing.T) { } func TestNewInvalidExcelDateError(t *testing.T) { - assert.EqualError(t, newInvalidExcelDateError(-1), "invalid date value -1.000000, negative values are not supported supported") + assert.EqualError(t, newInvalidExcelDateError(-1), "invalid date value -1.000000, negative values are not supported") } |