Skip to content

Commit

Permalink
Use new env var (#4698)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-liver authored Nov 29, 2023
1 parent 2738a91 commit cce7c0d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions integration/integration_tms_export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestTmsExportIntegrationYaml(t *testing.T) {
Image: "devxci/mbtci-java11-node14",
User: "root",
TestDir: []string{"testdata", "TestTmsIntegration"},
Environment: map[string]string{"PIPER_tmsServiceKey": tmsServiceKey},
Environment: map[string]string{"PIPER_serviceKey": tmsServiceKey},
})
defer container.terminate(t)

Expand All @@ -41,7 +41,7 @@ func TestTmsExportIntegrationBinFailDescription(t *testing.T) {
Image: "devxci/mbtci-java11-node14",
User: "root",
TestDir: []string{"testdata", "TestTmsIntegration"},
Environment: map[string]string{"PIPER_tmsServiceKey": tmsServiceKey},
Environment: map[string]string{"PIPER_serviceKey": tmsServiceKey},
})
defer container.terminate(t)

Expand Down
8 changes: 4 additions & 4 deletions integration/integration_tms_upload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestTmsUploadIntegrationBinSuccess(t *testing.T) {
Image: "devxci/mbtci-java11-node14",
User: "root",
TestDir: []string{"testdata", "TestTmsIntegration"},
Environment: map[string]string{"PIPER_tmsServiceKey": tmsServiceKey},
Environment: map[string]string{"PIPER_serviceKey": tmsServiceKey},
})
defer container.terminate(t)

Expand All @@ -58,7 +58,7 @@ func TestTmsUploadIntegrationBinNoDescriptionSuccess(t *testing.T) {
Image: "devxci/mbtci-java11-node14",
User: "root",
TestDir: []string{"testdata", "TestTmsIntegration"},
Environment: map[string]string{"PIPER_tmsServiceKey": tmsServiceKey},
Environment: map[string]string{"PIPER_serviceKey": tmsServiceKey},
})
defer container.terminate(t)

Expand Down Expand Up @@ -105,7 +105,7 @@ func TestTmsUploadIntegrationBinFailDescription(t *testing.T) {
Image: "devxci/mbtci-java11-node14",
User: "root",
TestDir: []string{"testdata", "TestTmsIntegration"},
Environment: map[string]string{"PIPER_tmsServiceKey": tmsServiceKey},
Environment: map[string]string{"PIPER_serviceKey": tmsServiceKey},
})
defer container.terminate(t)

Expand All @@ -126,7 +126,7 @@ func TestTmsUploadIntegrationYaml(t *testing.T) {
Image: "devxci/mbtci-java11-node14",
User: "root",
TestDir: []string{"testdata", "TestTmsIntegration"},
Environment: map[string]string{"PIPER_tmsServiceKey": tmsServiceKey},
Environment: map[string]string{"PIPER_serviceKey": tmsServiceKey},
})
defer container.terminate(t)

Expand Down

0 comments on commit cce7c0d

Please sign in to comment.