Skip to content

Commit dc4b9f9

Browse files
Fix variable declarations in GCP M4 manager test
Add missing uploadedFiles and err variable declarations that were causing go vet failures in CI.
1 parent f86dbda commit dc4b9f9

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

test/appframework_gcp/m4/manager_appframework_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ var _ = Describe("m4appfw test", func() {
9292

9393
//################## SETUP ##################
9494
// Upload V1 apps to GCP for Indexer Cluster
95+
var uploadedFiles []string
96+
var err error
9597
appVersion := "V1"
9698
appFileList := testenv.GetAppFileList(appListV1)
9799
testcaseEnvInst.Log.Info(fmt.Sprintf("Upload %s apps to GCP for Indexer Cluster", appVersion))
@@ -250,6 +252,8 @@ var _ = Describe("m4appfw test", func() {
250252

251253
//################## SETUP ##################
252254
// Upload V2 version of apps to GCP for Indexer Cluster
255+
var uploadedFiles []string
256+
var err error
253257
appVersion := "V2"
254258
appFileList := testenv.GetAppFileList(appListV2)
255259

0 commit comments

Comments
 (0)