From 7180d895eaaf5356b563e3c4c343e1623beb0c69 Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Fri, 20 Jun 2025 18:17:40 +0800 Subject: [PATCH] Update util/gconv/gconv_z_unit_scan_test.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- util/gconv/gconv_z_unit_scan_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/gconv/gconv_z_unit_scan_test.go b/util/gconv/gconv_z_unit_scan_test.go index 2eaedd5bd..86f2d2aca 100644 --- a/util/gconv/gconv_z_unit_scan_test.go +++ b/util/gconv/gconv_z_unit_scan_test.go @@ -432,7 +432,9 @@ func TestScanDeepSlice(t *testing.T) { data2 = gjson.New("[[[1,2,3]],[[4,5,6]]]") ) err := data1.Scan(&req) + t.AssertNil(err) err = gconv.Scan(data1.String(), &req) + t.AssertNil(err) err = data2.Scan(&req2) t.AssertNil(err) t.Assert(len(req), 2)