Skip to content

Commit

Permalink
chore(tests): use new test account entity guid in nerdgraph test
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderblue committed Mar 9, 2023
1 parent e3f139a commit 66d299c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/nerdgraph/nerdgraph_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/stretchr/testify/require"

mock "github.com/newrelic/newrelic-client-go/v2/pkg/testhelpers"
"github.com/newrelic/newrelic-client-go/v2/pkg/testhelpers"
)

func TestIntegrationQuery(t *testing.T) {
Expand Down Expand Up @@ -53,7 +53,7 @@ func TestIntegrationQueryWithVariables(t *testing.T) {
`

variables := map[string]interface{}{
"guid": "MjUyMDUyOHxBUE18QVBQTElDQVRJT058MjE1MDM3Nzk1",
"guid": testhelpers.IntegrationTestApplicationEntityGUID,
}

actual, err := gqlClient.Query(query, variables)
Expand All @@ -64,7 +64,7 @@ func TestIntegrationQueryWithVariables(t *testing.T) {

// nolint
func newNerdGraphIntegrationTestClient(t *testing.T) NerdGraph {
tc := mock.NewIntegrationTestConfig(t)
tc := testhelpers.NewIntegrationTestConfig(t)

return New(tc)
}

0 comments on commit 66d299c

Please sign in to comment.