diff options
author | xuri <xuri.me@gmail.com> | 2022-04-30 09:54:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 09:54:11 +0800 |
commit | 856ee57c4019b4478da0f6cb3010ae636914a6be (patch) | |
tree | a1a28fb6dec307695d4ec491929a00961c1c65ec /numfmt_test.go | |
parent | 0f93bd23c97ac0f04fe8012bd4a262c851e44a82 (diff) |
This closes #1212, init support for 1900 or 1904 date system
Diffstat (limited to 'numfmt_test.go')
-rw-r--r-- | numfmt_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numfmt_test.go b/numfmt_test.go index 7dc3f77..5cdf56b 100644 --- a/numfmt_test.go +++ b/numfmt_test.go @@ -1005,7 +1005,7 @@ func TestNumFmt(t *testing.T) { {"-8.0450685976001E-21", "0_);[Red]\\(0\\)", "(0)"}, {"-8.04506", "0_);[Red]\\(0\\)", "(8)"}, } { - result := format(item[0], item[1]) + result := format(item[0], item[1], false) assert.Equal(t, item[2], result, item) } } |