From ba0c414e7fda69b1c38f86c83f78dfc53cc08b90 Mon Sep 17 00:00:00 2001 From: Inhere Date: Sat, 25 Feb 2023 20:05:42 +0800 Subject: [PATCH] :green_heart: fix: fix unit test error --- strutil/split_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strutil/split_test.go b/strutil/split_test.go index e7c916ceb..e8d7b7b31 100644 --- a/strutil/split_test.go +++ b/strutil/split_test.go @@ -36,7 +36,7 @@ func TestCut(t *testing.T) { assert.Eq(t, "hi", b) assert.Eq(t, "inhere", a) - b, a = strutil.SplitKV(" name = inhere \n", ",") + b, a = strutil.SplitKV(" name = inhere \n", "=") assert.Eq(t, "name", b) assert.Eq(t, "inhere", a)