From 7e88f588f0154b7cce6cc56ff29c834c162bf396 Mon Sep 17 00:00:00 2001 From: Bingyi Sun Date: Wed, 22 Dec 2021 12:11:03 +0800 Subject: [PATCH] Fix unit test (#13947) Signed-off-by: sunby Co-authored-by: sunby --- internal/util/typeutil/schema_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/typeutil/schema_test.go b/internal/util/typeutil/schema_test.go index 2d0bd2dd73..ba110fd681 100644 --- a/internal/util/typeutil/schema_test.go +++ b/internal/util/typeutil/schema_test.go @@ -287,7 +287,7 @@ func TestSchema_invalid(t *testing.T) { _, err = helper.GetFieldFromName("none") assert.NotNil(t, err) - assert.EqualError(t, err, "Failed to get field schema by name: fieldName(none) not found") + assert.EqualError(t, err, "failed to get field schema by name: fieldName(none) not found") _, err = helper.GetFieldFromID(101) assert.NotNil(t, err)