mirror of https://github.com/linkerd/linkerd2.git
Fix compilation with Go 1.12 (#2398)
One format string breaks when using go-1.12.
This commit is contained in:
parent
c3f9ff8e32
commit
2f91a9d1f2
|
@ -72,6 +72,6 @@ func TestPatch(t *testing.T) {
|
|||
}
|
||||
|
||||
if !reflect.DeepEqual(actual, expected) {
|
||||
t.Errorf("Content mismatch\nExpected: %s\nActual: %s", expected, actual)
|
||||
t.Errorf("Content mismatch\nExpected: %+v\nActual: %+v", expected, actual)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue