This commit is contained in:
Chris Lu
2021-07-09 03:19:21 -07:00
parent ecce300964
commit 3d624d1e16
4 changed files with 6 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ func TestS3Conf(t *testing.T) {
},
}
var buf bytes.Buffer
err := S3ConfigurationToText(&buf, s3Conf)
err := ProtoToText(&buf, s3Conf)
assert.Equal(t, err, nil)
s3ConfSaved := &iam_pb.S3ApiConfiguration{}
err = ParseS3ConfigurationFromBytes(buf.Bytes(), s3ConfSaved)