diff options
author | xuri <xuri.me@gmail.com> | 2020-05-10 16:56:08 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-05-10 16:56:08 +0800 |
commit | 882abb80988b7c50286dd2e6c6589fab10662db6 (patch) | |
tree | 49f88c0a3ed045a61519a318c67e0551d247c52e /calc_test.go | |
parent | 4188dc7a4a650200c697fd47ad28ba346bf786a6 (diff) |
- formula engine: reduce cyclomatic complexity
- styles: allow empty and default cell formats, #628
Diffstat (limited to 'calc_test.go')
-rw-r--r-- | calc_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calc_test.go b/calc_test.go index 6d0f853..fc107cb 100644 --- a/calc_test.go +++ b/calc_test.go @@ -381,7 +381,7 @@ func TestCalcCellValue(t *testing.T) { // BASE "=BASE()": "BASE requires at least 2 arguments", "=BASE(1,2,3,4)": "BASE allows at most 3 arguments", - "=BASE(1,1)": "radix must be an integer ≥ 2 and ≤ 36", + "=BASE(1,1)": "radix must be an integer >= 2 and <= 36", // CEILING "=CEILING()": "CEILING requires at least 1 argument", "=CEILING(1,2,3)": "CEILING allows at most 2 arguments", |