From 9a551b86645a6fb565f4d209cd0621e00f5cab32 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 22fc1024f..4bffaa0eb 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 {