From 82b20c585ed22302404091e3be65cce0893d1d41 Mon Sep 17 00:00:00 2001 From: jianzhiyao Date: Mon, 8 Mar 2021 17:31:46 +0800 Subject: [PATCH] fix UT --- client/orm/orm_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/orm/orm_test.go b/client/orm/orm_test.go index 4f15e2cf..32040028 100644 --- a/client/orm/orm_test.go +++ b/client/orm/orm_test.go @@ -1286,7 +1286,7 @@ func TestValuesList(t *testing.T) { throwFail(t, AssertIs(num, 3)) if num == 3 { throwFail(t, AssertIs(list[0][1], "slene")) - throwFail(t, AssertIs(list[2][9], nil)) + throwFail(t, AssertIs(list[2][11], nil)) } num, err = qs.OrderBy("Id").ValuesList(&list, "UserName", "Profile__Age")