This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch bug-hq-sync in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
commit ff2ec349568018301cec37710956aa071e3f88de Author: Hongtao Gao <[email protected]> AuthorDate: Sun Apr 12 02:27:28 2026 +0000 chore: fix lint issues in handoff replay test via [HAPI](https://hapi.run) Co-Authored-By: HAPI <[email protected]> --- banyand/trace/handoff_replay_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/banyand/trace/handoff_replay_test.go b/banyand/trace/handoff_replay_test.go index 2ab134f53..4adbd6014 100644 --- a/banyand/trace/handoff_replay_test.go +++ b/banyand/trace/handoff_replay_test.go @@ -446,10 +446,11 @@ func TestHandoffController_ReadPartFromHandoff_CoreMetadata(t *testing.T) { fileSystem.MkdirIfNotExist(partPath, storage.DirPerm) coreFiles := map[string][]byte{ - "primary.bin": []byte("primary data"), - "spans.bin": []byte("spans data"), - "meta.bin": []byte("meta data"), - "metadata.json": []byte(`{"compressedSizeBytes":1024,"uncompressedSpanSizeBytes":2048,"totalCount":50,"blocksCount":5,"minTimestamp":1700000000,"maxTimestamp":1700001000}`), + "primary.bin": []byte("primary data"), + "spans.bin": []byte("spans data"), + "meta.bin": []byte("meta data"), + "metadata.json": []byte(`{"compressedSizeBytes":1024,"uncompressedSpanSizeBytes":2048,` + + `"totalCount":50,"blocksCount":5,"minTimestamp":1700000000,"maxTimestamp":1700001000}`), "tag.type": []byte("tag type"), "traceID.filter": []byte("filter"), }
