diff --git a/test/fields/fields.go b/test/fields/fields.go index 7bfa021758d..7979ccc838f 100644 --- a/test/fields/fields.go +++ b/test/fields/fields.go @@ -39,7 +39,7 @@ func main() { token := os.Getenv("GITHUB_AUTH_TOKEN") if token == "" { - print("!!! No OAuth token. Some tests won't run. !!!\n\n") + fmt.Print("!!! No OAuth token. Some tests won't run. !!!\n\n") client = github.NewClient(nil) } else { client = github.NewClient(nil).WithAuthToken(token) diff --git a/test/integration/github_test.go b/test/integration/github_test.go index 64f379a732e..48745706002 100644 --- a/test/integration/github_test.go +++ b/test/integration/github_test.go @@ -28,7 +28,7 @@ var ( func init() { token := os.Getenv("GITHUB_AUTH_TOKEN") if token == "" { - print("!!! No OAuth token. Some tests won't run. !!!\n\n") + fmt.Print("!!! No OAuth token. Some tests won't run. !!!\n\n") client = github.NewClient(nil) } else { client = github.NewClient(nil).WithAuthToken(token)