|
8 | 8 | "github.com/onsi/gomega/gexec" |
9 | 9 | "github.com/pivotal-cf/go-pivnet/v6" |
10 | 10 | "github.com/pivotal-cf/go-pivnet/v6/logshim" |
11 | | - "github.com/pivotal-cf/pivnet-resource/gp" |
| 11 | + "github.com/pivotal-cf/pivnet-resource/v2/gp" |
12 | 12 | "github.com/robdimsdale/sanitizer" |
13 | 13 |
|
14 | 14 | "testing" |
@@ -83,15 +83,15 @@ var _ = SynchronizedBeforeSuite(func() []byte { |
83 | 83 | Expect(suiteEnv.RefreshToken).NotTo(BeEmpty(), "$PIVNET_RESOURCE_REFRESH_TOKEN must be provided") |
84 | 84 |
|
85 | 85 | By("Compiling check binary") |
86 | | - suiteEnv.CheckPath, err = gexec.Build("github.com/pivotal-cf/pivnet-resource/cmd/check", "-race") |
| 86 | + suiteEnv.CheckPath, err = gexec.Build("github.com/pivotal-cf/pivnet-resource/v2/cmd/check", "-race") |
87 | 87 | Expect(err).NotTo(HaveOccurred()) |
88 | 88 |
|
89 | 89 | By("Compiling out binary") |
90 | | - suiteEnv.OutPath, err = gexec.Build("github.com/pivotal-cf/pivnet-resource/cmd/out", "-race") |
| 90 | + suiteEnv.OutPath, err = gexec.Build("github.com/pivotal-cf/pivnet-resource/v2/cmd/out", "-race") |
91 | 91 | Expect(err).NotTo(HaveOccurred()) |
92 | 92 |
|
93 | 93 | By("Compiling in binary") |
94 | | - suiteEnv.InPath, err = gexec.Build("github.com/pivotal-cf/pivnet-resource/cmd/in") |
| 94 | + suiteEnv.InPath, err = gexec.Build("github.com/pivotal-cf/pivnet-resource/v2/cmd/in") |
95 | 95 | Expect(err).NotTo(HaveOccurred()) |
96 | 96 |
|
97 | 97 | By("Sanitizing suite setup output") |
|
0 commit comments