Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg/chunkenc: fix test using string(int) conversion (#2647)
Since go1.15, there's a new vet check for code such as string(x) where x has an integer type other than rune. This vet check is enabled by default on go test. TestSerialization failed because of that, this commit replaces `string()` conversions with `strconv.Itoa` calls Fixes #2646
- Loading branch information