From 3172c33fa6b46884c7ee3a5157ec331126f00353 Mon Sep 17 00:00:00 2001 From: Guo Lei Date: Thu, 18 Aug 2022 17:25:25 +0800 Subject: [PATCH] fix redundant type from array (#3462) --- weed/filer/filer_notify_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/weed/filer/filer_notify_test.go b/weed/filer/filer_notify_test.go index 4d08eb672..b85b4c410 100644 --- a/weed/filer/filer_notify_test.go +++ b/weed/filer/filer_notify_test.go @@ -10,7 +10,7 @@ import ( "google.golang.org/protobuf/proto" ) -func TestProtoMarshalText(t *testing.T) { +func TestProtoMarshal(t *testing.T) { oldEntry := &Entry{ FullPath: util.FullPath("/this/path/to"), @@ -22,7 +22,7 @@ func TestProtoMarshalText(t *testing.T) { TtlSec: 25, }, Chunks: []*filer_pb.FileChunk{ - &filer_pb.FileChunk{ + { FileId: "234,2423423422", Offset: 234234, Size: 234, @@ -48,6 +48,6 @@ func TestProtoMarshalText(t *testing.T) { t.Fatalf("marshal/unmarshal error: %s", text) } - println(text) + println(string(text)) }