Commit a696db1b authored by Gabriel Aszalos's avatar Gabriel Aszalos Committed by Ian Lance Taylor

bytes: correct message in test log

Change-Id: Ib731874b9a37ff141e4305d8ccfdf7c165155da6
Reviewed-on: https://go-review.googlesource.com/64930Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 7582494e
...@@ -142,7 +142,7 @@ func TestBasicOperations(t *testing.T) { ...@@ -142,7 +142,7 @@ func TestBasicOperations(t *testing.T) {
n, err = buf.Write([]byte(data[2:26])) n, err = buf.Write([]byte(data[2:26]))
if n != 24 { if n != 24 {
t.Errorf("wrote 25 bytes, but n == %d", n) t.Errorf("wrote 24 bytes, but n == %d", n)
} }
check(t, "TestBasicOperations (6)", &buf, string(data[0:26])) check(t, "TestBasicOperations (6)", &buf, string(data[0:26]))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment