diff --git a/database_unit_test.go b/database_unit_test.go index 106e034c..8a9e85e8 100755 --- a/database_unit_test.go +++ b/database_unit_test.go @@ -931,7 +931,6 @@ func TestCarbon_Issue243(t *testing.T) { if err != nil { log.Fatal(err) } - fmt.Println("defaultTimezone", defaultTimezone) assert.Equal(t, "PRC", project.StartDate.Location()) assert.Equal(t, "PRC", project.EndDate.Location()) } diff --git a/parser_unit_test.go b/parser_unit_test.go index dbe9ae71..ebef6e3f 100755 --- a/parser_unit_test.go +++ b/parser_unit_test.go @@ -1,7 +1,6 @@ package carbon import ( - "fmt" "testing" "github.com/stretchr/testify/assert" @@ -224,7 +223,6 @@ func TestCarbon_Issue206(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - fmt.Println("err", tt.carbon.Error) assert.Equalf(t, tt.want, tt.carbon.ToString(PRC), "Parse()") }) } diff --git a/setter_unit_test.go b/setter_unit_test.go index 68267b78..597bb5b0 100755 --- a/setter_unit_test.go +++ b/setter_unit_test.go @@ -1,7 +1,6 @@ package carbon import ( - "fmt" "testing" "time" @@ -198,7 +197,6 @@ func TestCarbon_SetLocale(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - fmt.Println("LLL", tt.carbon.Location()) assert.Equalf(t, tt.want, tt.carbon.ToMonthString(), "SetLocale()") }) }