GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 8fd7f9...084ef4 )
by Victor Hugo
01:18 queued 13s
created

pkg/connect/oauth2_test.go   A

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 10
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A connect.Test_Endpoint 0 5 1
1
package connect
2
3
import (
4
	"testing"
5
6
	"github.com/stretchr/testify/require"
7
	"golang.org/x/oauth2"
8
)
9
10
func Test_Endpoint(t *testing.T) {
11
	ept := OauthEndpoint()
12
	require.Equal(t, ept.AuthURL, authURL)
13
	require.Equal(t, ept.AuthStyle, oauth2.AuthStyleAutoDetect)
14
	require.Equal(t, ept.TokenURL, tokensURL)
15
}
16