1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-28 05:47:08 +02:00

Use new env var (#4698)

This commit is contained in:
Oliver Feldmann 2023-11-29 12:29:29 +01:00 committed by GitHub
parent 2738a91057
commit cce7c0d384
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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)
@ -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)

View File

@ -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)
@ -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)
@ -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)
@ -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)