diff options
author | xuri <xuri.me@gmail.com> | 2022-02-13 00:06:30 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-02-13 00:06:30 +0800 |
commit | 4b64b26c52932a51ca97a2bb6bf372a07020e52b (patch) | |
tree | 0d5b88ab9db7b459de73e65b022871ef69fe2cd6 /lib_test.go | |
parent | 3f8f4f52e68d408da5a2e5108af3cc99bf8586bc (diff) |
Ref: #660, #764, #1093, #1112, #1133 This improve number format support
- Introduced NFP (number format parser) dependencies module
- Initialize custom dates and times number format support
- Dependencies module upgraded
Diffstat (limited to 'lib_test.go')
-rw-r--r-- | lib_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_test.go b/lib_test.go index da75dee..1e2f324 100644 --- a/lib_test.go +++ b/lib_test.go @@ -234,7 +234,7 @@ func TestSortCoordinates(t *testing.T) { } func TestInStrSlice(t *testing.T) { - assert.EqualValues(t, -1, inStrSlice([]string{}, "")) + assert.EqualValues(t, -1, inStrSlice([]string{}, "", true)) } func TestBoolValMarshal(t *testing.T) { |