summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.golangci.yml1
-rw-r--r--decode_scan_test.go3
2 files changed, 2 insertions, 2 deletions
diff --git a/.golangci.yml b/.golangci.yml
index f9e1160..1076d1a 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -54,7 +54,6 @@ linters:
- gomnd
- ireturn
- lll
- - prealloc
- revive
- stylecheck
- testpackage
diff --git a/decode_scan_test.go b/decode_scan_test.go
index 5d1542f..f5ceee0 100644
--- a/decode_scan_test.go
+++ b/decode_scan_test.go
@@ -346,7 +346,8 @@ func TestElemRuneTypeScanner2(t *testing.T) {
{'"', 1, internal.RuneTypeStringEnd, nil},
{':', 1, internal.RuneTypeObjectColon, nil},
}
- var expStr, actStr []string
+ expStr := make([]string, 0, len(exp))
+ actStr := make([]string, 0, len(exp))
for _, iExp := range exp {
var iAct ReadRuneTypeResult
iAct.r, iAct.s, iAct.t, iAct.e = parent.ReadRuneType()