Commit 97a4c945 authored by Kirill Smelkov's avatar Kirill Smelkov

xruntime: Fix Go1.10 test failure

xruntime/xruntime_test.go:47: Fatal call has possible formatting directive %v
parent ee74044c
......@@ -44,7 +44,7 @@ func TestTraceback(t *testing.T) {
f111(&tb1, &tb2)
if len(tb1) != 3 {
t.Fatal("len(tb1) = %v ; must be 3", len(tb1))
t.Fatalf("len(tb1) = %v ; must be 3", len(tb1))
}
tb1[0], tb1[1], tb1[2] = tb1[2], tb1[1], tb1[0] // reverse
......
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