rpc/message: Remove incorrect copypaste #109

Merged
fyrchik merged 1 commit from fyrchik/frostfs-api-go:protogen-tests into master 2024-08-27 08:58:14 +00:00

View file

@ -104,11 +104,6 @@ func testCompatibility(t *testing.T, msgGen func(empty bool) message.Message) {
require.NoError(t, err)
require.JSONEq(t, string(a), string(b))
if len(a) == 0 {
require.Empty(t, b)
} else {
require.Equal(t, a, b)
}
}
t.Run("empty", func(t *testing.T) {
msg := msgGen(true)