From 9df1a0fcb0a3f8351b823940a4773254167efe68 Mon Sep 17 00:00:00 2001 From: inhere Date: Sun, 5 Jul 2020 08:53:27 +0800 Subject: [PATCH] update smoe teste --- strutil/format_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/strutil/format_test.go b/strutil/format_test.go index aeee0ddf5..7b78dd250 100644 --- a/strutil/format_test.go +++ b/strutil/format_test.go @@ -9,7 +9,9 @@ import ( func TestUpperOrLowerCase(t *testing.T) { // Uppercase, Lowercase + assert.Equal(t, "ABC", strutil.Upper("abc")) assert.Equal(t, "ABC", strutil.Uppercase("abc")) + assert.Equal(t, "abc", strutil.Lower("ABC")) assert.Equal(t, "abc", strutil.Lowercase("ABC")) }