Skip to content

Commit f842162

Browse files
Merge pull request #479 from Jleagle/master
2 parents 2684001 + 309b7c2 commit f842162

File tree

87 files changed

+169
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+169
-131
lines changed

providers/amazon/amazon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ package amazon
55
import (
66
"bytes"
77
"encoding/json"
8+
"fmt"
89
"io"
910
"io/ioutil"
1011
"net/http"
1112
"net/url"
1213

13-
"fmt"
1414
"github.com/markbates/goth"
1515
"golang.org/x/oauth2"
1616
)

providers/amazon/amazon_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package amazon_test
22

33
import (
4+
"os"
5+
"testing"
6+
47
"github.com/markbates/goth"
58
"github.com/markbates/goth/providers/amazon"
69
"github.com/stretchr/testify/assert"
7-
"os"
8-
"testing"
910
)
1011

1112
func Test_New(t *testing.T) {

providers/amazon/session_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package amazon_test
22

33
import (
4+
"testing"
5+
46
"github.com/markbates/goth"
57
"github.com/markbates/goth/providers/amazon"
68
"github.com/stretchr/testify/assert"
7-
"testing"
89
)
910

1011
func Test_Implements_Session(t *testing.T) {

providers/auth0/auth0.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ package auth0
55
import (
66
"bytes"
77
"encoding/json"
8+
"fmt"
89
"io"
910
"net/http"
1011

11-
"fmt"
12-
1312
"github.com/markbates/goth"
1413
"golang.org/x/oauth2"
1514
)

providers/auth0/session_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package auth0_test
22

33
import (
4+
"testing"
5+
46
"github.com/markbates/goth"
57
"github.com/markbates/goth/providers/auth0"
68
"github.com/stretchr/testify/assert"
7-
"testing"
89
)
910

1011
func Test_Implements_Session(t *testing.T) {

providers/battlenet/battlenet.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ package battlenet
55
import (
66
"bytes"
77
"encoding/json"
8+
"fmt"
89
"io/ioutil"
910
"net/http"
1011

11-
"fmt"
12-
1312
"github.com/markbates/goth"
1413
"golang.org/x/oauth2"
1514
)

providers/battlenet/battlenet_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package battlenet_test
22

33
import (
4+
"os"
5+
"testing"
6+
47
"github.com/markbates/goth"
58
"github.com/markbates/goth/providers/battlenet"
69
"github.com/stretchr/testify/assert"
7-
"os"
8-
"testing"
910
)
1011

1112
func Test_New(t *testing.T) {

providers/battlenet/session_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package battlenet_test
22

33
import (
4+
"testing"
5+
46
"github.com/markbates/goth"
57
"github.com/markbates/goth/providers/battlenet"
68
"github.com/stretchr/testify/assert"
7-
"testing"
89
)
910

1011
func Test_Implements_Session(t *testing.T) {

providers/box/box.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ package box
44

55
import (
66
"encoding/json"
7+
"fmt"
78
"io"
89
"net/http"
910

10-
"fmt"
1111
"github.com/markbates/goth"
1212
"golang.org/x/oauth2"
1313
)

providers/box/box_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package box_test
22

33
import (
4+
"os"
5+
"testing"
6+
47
"github.com/markbates/goth"
58
"github.com/markbates/goth/providers/box"
69
"github.com/stretchr/testify/assert"
7-
"os"
8-
"testing"
910
)
1011

1112
func Test_New(t *testing.T) {

0 commit comments

Comments
 (0)