Lines Matching refs:want
506 want := test.files[i]
509 if want.Name != got.Name {
510 t.Errorf("incorrect file %d want %q got %q", i, want.Name, got.Name)
514 if want.UncompressedSize64 != got.UncompressedSize64 {
515 t.Errorf("incorrect file %s length want %v got %v", want.Name,
516 want.UncompressedSize64, got.UncompressedSize64)
519 if want.ExternalAttrs != got.ExternalAttrs {
520 t.Errorf("incorrect file %s attrs want %x got %x", want.Name,
521 want.ExternalAttrs, got.ExternalAttrs)
524 if want.CRC32 != got.CRC32 {
525 t.Errorf("incorrect file %s crc want %v got %v", want.Name,
526 want.CRC32, got.CRC32)
529 if want.Method != got.Method {
530 t.Errorf("incorrect file %s method want %v got %v", want.Name,
531 want.Method, got.Method)
546 want := []string{
600 if !reflect.DeepEqual(want, got) {
601 t.Errorf("want files %q, got %q", want, got)