fix redundant type from array (#3462)
This commit is contained in:
@@ -10,7 +10,7 @@ import (
|
|||||||
"google.golang.org/protobuf/proto"
|
"google.golang.org/protobuf/proto"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestProtoMarshalText(t *testing.T) {
|
func TestProtoMarshal(t *testing.T) {
|
||||||
|
|
||||||
oldEntry := &Entry{
|
oldEntry := &Entry{
|
||||||
FullPath: util.FullPath("/this/path/to"),
|
FullPath: util.FullPath("/this/path/to"),
|
||||||
@@ -22,7 +22,7 @@ func TestProtoMarshalText(t *testing.T) {
|
|||||||
TtlSec: 25,
|
TtlSec: 25,
|
||||||
},
|
},
|
||||||
Chunks: []*filer_pb.FileChunk{
|
Chunks: []*filer_pb.FileChunk{
|
||||||
&filer_pb.FileChunk{
|
{
|
||||||
FileId: "234,2423423422",
|
FileId: "234,2423423422",
|
||||||
Offset: 234234,
|
Offset: 234234,
|
||||||
Size: 234,
|
Size: 234,
|
||||||
@@ -48,6 +48,6 @@ func TestProtoMarshalText(t *testing.T) {
|
|||||||
t.Fatalf("marshal/unmarshal error: %s", text)
|
t.Fatalf("marshal/unmarshal error: %s", text)
|
||||||
}
|
}
|
||||||
|
|
||||||
println(text)
|
println(string(text))
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user