This commit is contained in:
李子铭 2024-10-10 15:49:45 +08:00
parent 353174da33
commit 0896fecd85
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,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)
})
}