Skip to content

Commit 2686526

Browse files
committed
fix fork sync
1 parent 1159a5b commit 2686526

15 files changed

Lines changed: 142 additions & 111 deletions

actor/v7pushaction/handle_deployment_scale_flag_overrides.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package v7pushaction
22

33
import (
4-
"code.cloudfoundry.org/cli/util/manifestparser"
4+
"code.cloudfoundry.org/cli/v8/util/manifestparser"
55
)
66

77
func (actor Actor) HandleDeploymentScaleFlagOverrides(

actor/v7pushaction/handle_deployment_scale_flag_overrides_test.go

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

33
import (
4-
. "code.cloudfoundry.org/cli/actor/v7pushaction"
5-
"code.cloudfoundry.org/cli/util/manifestparser"
4+
. "code.cloudfoundry.org/cli/v8/actor/v7pushaction"
5+
"code.cloudfoundry.org/cli/v8/util/manifestparser"
66
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
88
)

api/cloudcontroller/ccv3/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package ccv3
33
import (
44
"net/http"
55

6-
"code.cloudfoundry.org/cli/api/cloudcontroller"
7-
"code.cloudfoundry.org/cli/api/cloudcontroller/ccerror"
8-
"code.cloudfoundry.org/cli/resources"
6+
"code.cloudfoundry.org/cli/v8/api/cloudcontroller"
7+
"code.cloudfoundry.org/cli/v8/api/cloudcontroller/ccerror"
8+
"code.cloudfoundry.org/cli/v8/resources"
99
)
1010

1111
type RootLinks struct {

api/cloudcontroller/ccv3/root_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net/http"
66
"strings"
77

8-
"code.cloudfoundry.org/cli/api/cloudcontroller/ccerror"
9-
. "code.cloudfoundry.org/cli/api/cloudcontroller/ccv3"
8+
"code.cloudfoundry.org/cli/v8/api/cloudcontroller/ccerror"
9+
. "code.cloudfoundry.org/cli/v8/api/cloudcontroller/ccv3"
1010

1111
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"

api/cloudcontroller/wrapper/trace_request.go

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

33
import (
4-
"code.cloudfoundry.org/cli/api/cloudcontroller"
5-
"code.cloudfoundry.org/cli/api/shared"
4+
"code.cloudfoundry.org/cli/v8/api/cloudcontroller"
5+
"code.cloudfoundry.org/cli/v8/api/shared"
66
)
77

88
// CCTraceHeaderRequest is a wrapper that adds b3 trace headers to requests.

api/cloudcontroller/wrapper/trace_request_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"bytes"
55
"net/http"
66

7-
"code.cloudfoundry.org/cli/api/cloudcontroller"
8-
"code.cloudfoundry.org/cli/api/cloudcontroller/cloudcontrollerfakes"
9-
. "code.cloudfoundry.org/cli/api/cloudcontroller/wrapper"
7+
"code.cloudfoundry.org/cli/v8/api/cloudcontroller"
8+
"code.cloudfoundry.org/cli/v8/api/cloudcontroller/cloudcontrollerfakes"
9+
. "code.cloudfoundry.org/cli/v8/api/cloudcontroller/wrapper"
1010

1111
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"

api/router/wrapper/trace_request.go

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

33
import (
4-
"code.cloudfoundry.org/cli/api/router"
5-
"code.cloudfoundry.org/cli/api/shared"
4+
"code.cloudfoundry.org/cli/v8/api/router"
5+
"code.cloudfoundry.org/cli/v8/api/shared"
66
)
77

88
// RoutingTraceHeaderRequest is a wrapper that adds b3 trace headers to requests.

api/router/wrapper/trace_request_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"bytes"
55
"net/http"
66

7-
"code.cloudfoundry.org/cli/api/router"
8-
"code.cloudfoundry.org/cli/api/router/routerfakes"
9-
. "code.cloudfoundry.org/cli/api/router/wrapper"
7+
"code.cloudfoundry.org/cli/v8/api/router"
8+
"code.cloudfoundry.org/cli/v8/api/router/routerfakes"
9+
. "code.cloudfoundry.org/cli/v8/api/router/wrapper"
1010

1111
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"

api/shared/trace_headers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package shared
33
import (
44
"net/http"
55

6-
"code.cloudfoundry.org/cli/util/trace"
6+
"code.cloudfoundry.org/cli/v8/util/trace"
77
)
88

99
const (

api/shared/trace_headers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package shared_test
33
import (
44
"net/http"
55

6-
. "code.cloudfoundry.org/cli/api/shared"
6+
. "code.cloudfoundry.org/cli/v8/api/shared"
77

88
. "github.com/onsi/ginkgo/v2"
99
. "github.com/onsi/gomega"

0 commit comments

Comments
 (0)