Commit ee74044c authored by Kirill Smelkov's avatar Kirill Smelkov

xbytes: Fix Go1.10 test failure

./alloc_test.go:62: Fatalf format %d has arg aliases(s, sprev) of wrong type bool
parent 9195e30a
......@@ -59,7 +59,7 @@ func TestSlice(t *testing.T) {
}
if !(aliases(s, sprev) == tt.aliased) {
t.Fatalf("step %d: %v: unexpected slice aliasing: %v", aliases(s, sprev))
t.Fatalf("step %d: %v: unexpected slice aliasing: %v", i, tt, aliases(s, sprev))
}
......
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