This commit is contained in:
李子铭 2024-11-11 15:38:44 +08:00
parent 7a63187d31
commit a9595344b1
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func config() []byte {
func TestConfig(t *testing.T) {
t.Run("TestConfig", func(t *testing.T) {
c := config()
fmt.Printf("%+s\n", string(c))
fmt.Printf("%s\n", string(c))
assert.NotEmpty(t, c)
})
}