diff options
| author | Guo Lei <snipergg@163.com> | 2022-08-18 17:25:25 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-18 02:25:25 -0700 |
| commit | 3172c33fa6b46884c7ee3a5157ec331126f00353 (patch) | |
| tree | 3afee0ab6a6a3eadad4e08088d614507b982bcad | |
| parent | 42c6e5251363f0437f22eace84589856ff06f669 (diff) | |
| download | seaweedfs-3172c33fa6b46884c7ee3a5157ec331126f00353.tar.xz seaweedfs-3172c33fa6b46884c7ee3a5157ec331126f00353.zip | |
fix redundant type from array (#3462)
| -rw-r--r-- | weed/filer/filer_notify_test.go | 6 |
1 files 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)) } |
