Fix output of randomizer

This commit is contained in:
Patrick O'brien 2016-08-19 19:56:27 +10:00
parent d28b3f4b62
commit d40058c3ce
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ func randomizeField(s *Seed, field reflect.Value, fieldType string, canBeNull bo
}
if value == nil {
return errors.Errorf("unsupported type: %T", typ.String())
return errors.Errorf("unsupported type: %s", typ.String())
}
field.Set(reflect.ValueOf(value))