diff --git a/types_test.go b/types_test.go index 21931762..222c4f80 100644 --- a/types_test.go +++ b/types_test.go @@ -139,13 +139,10 @@ type Nullable struct { } func (s *Nullable) FromDB(data []byte) error { - if data == nil { return nil } - fmt.Println("--sd", data) - *s = Nullable{ Data: string(data), }