From 0c1974f3971c5531cc164c98c5e952e48662a7b7 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 30 Sep 2019 22:43:27 +0800 Subject: [PATCH] fix tests --- types_null_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types_null_test.go b/types_null_test.go index 7a13837e..fe06d94b 100644 --- a/types_null_test.go +++ b/types_null_test.go @@ -22,7 +22,7 @@ type NullType struct { Age sql.NullInt64 Height sql.NullFloat64 IsMan sql.NullBool `xorm:"null"` - CustomStruct CustomStruct `xorm:"valchar(64) null"` + CustomStruct CustomStruct `xorm:"varchar(64) null"` } type CustomStruct struct {