summaryrefslogtreecommitdiff
path: root/numfmt_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'numfmt_test.go')
-rw-r--r--numfmt_test.go2
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)
}
}