Skip to content

Commit a0c2d77

Browse files
committed
remove print statements
1 parent a49fdee commit a0c2d77

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

integrations/api_repo_test.go

-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package integrations
66

77
import (
8-
"fmt"
98
"net/http"
109
"strings"
1110
"testing"
@@ -80,11 +79,8 @@ func TestAPIOrgRepos(t *testing.T) {
8079
DecodeJSON(t, resp, &apiRepos)
8180
expectedLen := models.GetCount(t, models.Repository{OwnerID: sourceOrg.ID},
8281
models.Cond("is_private = ?", false))
83-
fmt.Println(expectedLen) // 0
84-
fmt.Println(len(apiRepos)) // 1
8582
assert.Len(t, apiRepos, expectedLen)
8683
for _, repo := range apiRepos {
87-
fmt.Printf("%+v\n", repo)
8884
assert.False(t, repo.Private)
8985
}
9086
}

0 commit comments

Comments
 (0)