From 99ca6e4ba2e05f7e088c813c23d3586173ad1d51 Mon Sep 17 00:00:00 2001 From: Xiangyu Wang Date: Fri, 22 Oct 2021 20:45:12 +0800 Subject: [PATCH] Improve comment in storage (#10448) Signed-off-by: Xiangyu Wang --- internal/storage/binlog_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/storage/binlog_test.go b/internal/storage/binlog_test.go index c9aa1c2ad5..fe057a8dd8 100644 --- a/internal/storage/binlog_test.go +++ b/internal/storage/binlog_test.go @@ -71,7 +71,7 @@ func TestInsertBinlog(t *testing.T) { assert.Equal(t, magicNum, MagicNumber) pos := int(unsafe.Sizeof(MagicNumber)) - //descriptor header, timestamp + // descriptor header, timestamp ts := UnsafeReadInt64(buf, pos) assert.Greater(t, ts, int64(0)) curts := time.Now().UnixNano() / int64(time.Millisecond)