Skip to content

Commit e4fe329

Browse files
committed
goimports
1 parent b4f214e commit e4fe329

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

e2e_http1_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"context"
55
"crypto/tls"
66
"fmt"
7+
"testing"
8+
79
"github.com/monzo/terrors"
810
"github.com/stretchr/testify/assert"
9-
"testing"
1011

1112
"github.com/stretchr/testify/require"
1213
)

e2e_http2_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"context"
55
"crypto/tls"
66
"fmt"
7+
"testing"
8+
79
"github.com/monzo/terrors"
810
"github.com/stretchr/testify/assert"
9-
"testing"
1011

1112
"github.com/stretchr/testify/require"
1213
)

h2c.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/textproto"
1010
"sync"
1111

12-
"github.com/deckarep/golang-set"
12+
mapset "github.com/deckarep/golang-set"
1313
"github.com/monzo/terrors"
1414
"golang.org/x/net/http/httpguts"
1515
"golang.org/x/net/http2"

request_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ import (
55
"bytes"
66
"context"
77
"encoding/json"
8-
"github.com/monzo/terrors"
98
"io/ioutil"
109
"math"
1110
"strings"
1211
"testing"
1312

13+
"github.com/monzo/terrors"
14+
1415
legacyproto "github.com/golang/protobuf/proto"
1516
"github.com/stretchr/testify/assert"
1617
"github.com/stretchr/testify/require"

response_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ import (
55
"context"
66
"encoding/json"
77
"errors"
8-
legacyproto "github.com/golang/protobuf/proto"
9-
"github.com/monzo/typhon/legacyprototest"
108
"io"
119
"io/ioutil"
1210
"math"
1311
"net/http"
1412
"strings"
1513
"testing"
1614

15+
legacyproto "github.com/golang/protobuf/proto"
16+
"github.com/monzo/typhon/legacyprototest"
17+
1718
"github.com/monzo/terrors"
1819
"github.com/monzo/typhon/prototest"
1920
"github.com/stretchr/testify/assert"

server.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ package typhon
33
import (
44
"context"
55
"fmt"
6-
"github.com/monzo/slog"
76
"net"
87
"net/http"
98
"os"
109
"strconv"
1110
"sync"
1211
"time"
12+
13+
"github.com/monzo/slog"
1314
)
1415

1516
type Server struct {

0 commit comments

Comments
 (0)