diff --git a/pkg/apiaccess/keys_integration_test.go b/pkg/apiaccess/keys_integration_test.go index 9b8c58fe..65a72509 100644 --- a/pkg/apiaccess/keys_integration_test.go +++ b/pkg/apiaccess/keys_integration_test.go @@ -171,11 +171,11 @@ func TestIntegrationAPIAccess_UpdateUserKeyError(t *testing.T) { func TestIntegrationAPIAccess_DeleteIngestKeyError(t *testing.T) { t.Parallel() client := newIntegrationTestClient(t) - // mockIngestKeyIDOne, mockIngestKeyIDTwo := mock.GetNonExistentIDs() + mockIngestKeyIDOne, mockIngestKeyIDTwo := mock.GetNonExistentIDs() _, err := client.DeleteAPIAccessKey(APIAccessDeleteInput{ IngestKeyIDs: []string{ - "585897B5FC5079836EC175CCDD76BB81C0929C915AA216F68D6D3BD790A61DDE", - "585897B5FC5079836EC175CCDD76BB81C0929C915AA216F68D6D3BD097A61DDE", + mockIngestKeyIDOne, + mockIngestKeyIDTwo, }, }) require.Error(t, err)