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.
2 parents 889e001 + b99816c commit 4bdaeb0Copy full SHA for 4bdaeb0
integration/client_test.go
@@ -31,11 +31,11 @@ func TestValidAuth(t *testing.T) {
31
}
32
33
func TestBaseUrl(t *testing.T) {
34
- t.Run("Base url defaults to https://app.datadoghq.com", func(t *testing.T) {
+ t.Run("Base url defaults to https://api.datadoghq.com", func(t *testing.T) {
35
assert.Empty(t, os.Getenv("DATADOG_HOST"))
36
37
c := datadog.NewClient("abc", "def")
38
- assert.Equal(t, "https://app.datadoghq.com", c.GetBaseUrl())
+ assert.Equal(t, "https://api.datadoghq.com", c.GetBaseUrl())
39
})
40
41
t.Run("Base url defaults DATADOG_HOST environment variable if set", func(t *testing.T) {
0 commit comments