diff --git a/uimage/uimage_test.go b/uimage/uimage_test.go index 6ab14a3..14a89a3 100644 --- a/uimage/uimage_test.go +++ b/uimage/uimage_test.go @@ -1127,6 +1127,8 @@ func TestOptionsFor(t *testing.T) { t.Fatal(err) } if !reflect.DeepEqual(got, tt.want) { + t.Logf("got buildOpts: %v", got.Commands[0].BuildOpts) + t.Logf("want buildOpts: %v", tt.want.Commands[0].BuildOpts) t.Errorf("OptionsFor = \n%#v, want\n%#v", got, tt.want) } })