Skip to content

Commit

Permalink
chore: undo proto usage change (#5650)
Browse files Browse the repository at this point in the history
  • Loading branch information
schroederc committed May 22, 2023
1 parent e655021 commit b7e9f65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kythe/go/util/riegeli/riegeli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ func TestRecordsMetadata(t *testing.T) {
Transpose: true,
Compression: BrotliCompression(4),
}
expected := &rmpb.RecordsMetadata{RecordWriterOptions: proto.String(opts.String())}
expected := &rmpb.RecordsMetadata{}
expected.RecordWriterOptions = proto.String(opts.String())

buf := writeStrings(t, opts, 128)
rd := NewReader(bytes.NewReader(buf.Bytes()))
Expand Down

0 comments on commit b7e9f65

Please sign in to comment.