We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53ecd3b commit 7ebce0bCopy full SHA for 7ebce0b
test/e2e/atlas/integrations_test.go
@@ -49,6 +49,9 @@ func TestIntegrations(t *testing.T) {
49
require.NoError(t, err)
50
51
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()
55
if Gov() {
56
t.Skip("Skipping DATADOG integration test, cloudgov does not have an available datadog region")
57
}
@@ -57,7 +60,7 @@ func TestIntegrations(t *testing.T) {
60
"create",
58
61
datadogEntity,
59
62
"--apiKey",
- key,
63
+ datadogKey,
64
"--projectId",
65
g.projectID,
66
"-o=json")
0 commit comments