Skip to content

Commit

Permalink
Remove printing info
Browse files Browse the repository at this point in the history
  • Loading branch information
gouguoyin committed Nov 29, 2024
1 parent dc5e8cb commit b303083
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion database_unit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
2 changes: 0 additions & 2 deletions parser_unit_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package carbon

import (
"fmt"
"testing"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -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()")
})
}
Expand Down
2 changes: 0 additions & 2 deletions setter_unit_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package carbon

import (
"fmt"
"testing"
"time"

Expand Down Expand Up @@ -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()")
})
}
Expand Down

0 comments on commit b303083

Please sign in to comment.