Skip to content
This repository was archived by the owner on Apr 30, 2025. It is now read-only.

Commit 93ddb36

Browse files
committed
fix missed ginkgo v2 updates during branching
1 parent 1cd4816 commit 93ddb36

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

integration/retry_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ package integration
22

33
import (
44
"bytes"
5+
"fmt"
6+
"net/http"
7+
58
"code.cloudfoundry.org/gorouter/route"
69
"code.cloudfoundry.org/gorouter/test/common"
710
"code.cloudfoundry.org/gorouter/test_util"
8-
"fmt"
9-
. "github.com/onsi/ginkgo"
11+
. "github.com/onsi/ginkgo/v2"
1012
. "github.com/onsi/gomega"
11-
"net/http"
1213
)
1314

1415
var _ = Describe("Retries", func() {

proxy/fails/classifier_group_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import (
1010
"code.cloudfoundry.org/gorouter/proxy/fails"
1111
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"
13-
14-
"code.cloudfoundry.org/gorouter/proxy/fails"
1513
)
1614

1715
var _ = Describe("ClassifierGroup", func() {

test/common/tcp_app.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
package common
22

33
import (
4+
"encoding/json"
5+
"fmt"
6+
"net"
7+
"sync"
8+
49
"code.cloudfoundry.org/gorouter/common/uuid"
510
"code.cloudfoundry.org/gorouter/route"
611
"code.cloudfoundry.org/gorouter/test_util"
7-
"encoding/json"
8-
"fmt"
912
nats "github.com/nats-io/nats.go"
10-
. "github.com/onsi/ginkgo"
13+
. "github.com/onsi/ginkgo/v2"
1114
. "github.com/onsi/gomega"
12-
"net"
13-
"sync"
1415
)
1516

1617
type TcpApp struct {

0 commit comments

Comments
 (0)