Skip to content

Commit 7ebce0b

Browse files
CLOUDP-140746: Fix integration e2e tests (#1489)
1 parent 53ecd3b commit 7ebce0b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/e2e/atlas/integrations_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ func TestIntegrations(t *testing.T) {
4949
require.NoError(t, err)
5050

5151
t.Run("Create DATADOG", func(t *testing.T) {
52+
n, err := e2e.RandInt(9)
53+
require.NoError(t, err)
54+
datadogKey := "000000000000000000000000000000" + n.String() + n.String()
5255
if Gov() {
5356
t.Skip("Skipping DATADOG integration test, cloudgov does not have an available datadog region")
5457
}
@@ -57,7 +60,7 @@ func TestIntegrations(t *testing.T) {
5760
"create",
5861
datadogEntity,
5962
"--apiKey",
60-
key,
63+
datadogKey,
6164
"--projectId",
6265
g.projectID,
6366
"-o=json")

0 commit comments

Comments
 (0)