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)