Skip to content

Commit 2f763f6

Browse files
committed
Fix import paths from v8 to v9 for module compatibility
1 parent 7896700 commit 2f763f6

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

command/v7/stack_command.go

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

33
import (
4-
"code.cloudfoundry.org/cli/v8/command/flag"
5-
"code.cloudfoundry.org/cli/v8/resources"
4+
"code.cloudfoundry.org/cli/v9/command/flag"
5+
"code.cloudfoundry.org/cli/v9/resources"
66
)
77

88
type StackCommand struct {

command/v7/update_stack_command.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"slices"
55
"strings"
66

7-
"code.cloudfoundry.org/cli/v8/command/flag"
8-
"code.cloudfoundry.org/cli/v8/resources"
7+
"code.cloudfoundry.org/cli/v9/command/flag"
8+
"code.cloudfoundry.org/cli/v9/resources"
99
)
1010

1111
type UpdateStackCommand struct {

command/v7/update_stack_command_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ package v7_test
33
import (
44
"errors"
55

6-
"code.cloudfoundry.org/cli/v8/actor/actionerror"
7-
"code.cloudfoundry.org/cli/v8/actor/v7action"
8-
"code.cloudfoundry.org/cli/v8/command/commandfakes"
9-
. "code.cloudfoundry.org/cli/v8/command/v7"
10-
"code.cloudfoundry.org/cli/v8/command/v7/v7fakes"
11-
"code.cloudfoundry.org/cli/v8/resources"
12-
"code.cloudfoundry.org/cli/v8/util/configv3"
13-
"code.cloudfoundry.org/cli/v8/util/ui"
6+
"code.cloudfoundry.org/cli/v9/actor/actionerror"
7+
"code.cloudfoundry.org/cli/v9/actor/v7action"
8+
"code.cloudfoundry.org/cli/v9/command/commandfakes"
9+
. "code.cloudfoundry.org/cli/v9/command/v7"
10+
"code.cloudfoundry.org/cli/v9/command/v7/v7fakes"
11+
"code.cloudfoundry.org/cli/v9/resources"
12+
"code.cloudfoundry.org/cli/v9/util/configv3"
13+
"code.cloudfoundry.org/cli/v9/util/ui"
1414

1515
. "github.com/onsi/ginkgo/v2"
1616
. "github.com/onsi/gomega"

integration/v7/isolated/update_stack_command_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"fmt"
55
"regexp"
66

7-
. "code.cloudfoundry.org/cli/v8/cf/util/testhelpers/matchers"
7+
. "code.cloudfoundry.org/cli/v9/cf/util/testhelpers/matchers"
88

9-
"code.cloudfoundry.org/cli/v8/integration/helpers"
10-
"code.cloudfoundry.org/cli/v8/resources"
9+
"code.cloudfoundry.org/cli/v9/integration/helpers"
10+
"code.cloudfoundry.org/cli/v9/resources"
1111
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"
1313
. "github.com/onsi/gomega/gbytes"

0 commit comments

Comments
 (0)