From d1a19f96d5e1d2e42d2694d4d10ab3a186b841b0 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 25 Oct 2023 15:14:40 +0800 Subject: [PATCH] Adjust test --- schemas/quote_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/quote_test.go b/schemas/quote_test.go index 1b08579a..8f39db0d 100644 --- a/schemas/quote_test.go +++ b/schemas/quote_test.go @@ -131,7 +131,7 @@ func TestJoin(t *testing.T) { assert.EqualValues(t, "[a].*,[b].[c]", quoter.Join([]string{"a.*", " b.c"}, ",")) - assert.EqualValues(t, "[a] [c]", quoter.Join([]string{"a c"}, ",")) + assert.EqualValues(t, "[b] [a]", quoter.Join([]string{"b a"}, ",")) assert.EqualValues(t, "[f1], [f2], [f3]", quoter.Join(cols, ", "))