diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-20 14:28:31 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2020-02-20 14:29:26 -0800 |
commit | d90d71474f4c82f742140fdf026821709845cece (patch) | |
tree | 055a133e58d5fbea0c852c1a8468977f30940dc9 /tools/go_marshal/gomarshal/generator_tests.go | |
parent | 1bb0195079810773bd4457eecb1e7ac1890ddb74 (diff) |
Remove bytes read/written from marshal.Marshallable API.
Users of the API only care about whether the copy in/out succeeds in
their entirety, which is already signalled by the returned error.
PiperOrigin-RevId: 296297843
Diffstat (limited to 'tools/go_marshal/gomarshal/generator_tests.go')
-rw-r--r-- | tools/go_marshal/gomarshal/generator_tests.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/go_marshal/gomarshal/generator_tests.go b/tools/go_marshal/gomarshal/generator_tests.go index 8c28b00d0..2326e7a07 100644 --- a/tools/go_marshal/gomarshal/generator_tests.go +++ b/tools/go_marshal/gomarshal/generator_tests.go @@ -92,7 +92,7 @@ func (g *testGenerator) emitTestNonZeroSize() { g.emit("x := &%s{}\n", g.typeName()) g.emit("if x.SizeBytes() == 0 {\n") g.inIndent(func() { - g.emit("t.Fatal(\"Marshallable.Size() should not return zero\")\n") + g.emit("t.Fatal(\"Marshallable.SizeBytes() should not return zero\")\n") }) g.emit("}\n") }) |