Skip to content

Commit

Permalink
Try this
Browse files Browse the repository at this point in the history
  • Loading branch information
dehort committed Jan 17, 2024
1 parent 9a214f2 commit cad9b6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/api/tests/private/highLevelConnectionStatus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ package private
import (
"net/http"
"playbook-dispatcher/internal/api/controllers/public"
"playbook-dispatcher/internal/common/utils/test"
"playbook-dispatcher/internal/api/tests/common"
"playbook-dispatcher/internal/common/utils/test"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)

func getConnectionStatus(payload ApiInternalHighlevelConnectionStatusJSONRequestBody) (*HighLevelRecipientStatus, *ApiInternalHighlevelConnectionStatusResponse) {
ctx := common.ContextWithIdentity(test.WithOrgId())
orgId := test.WithOrgId()
ctx := common.ContextWithIdentity(orgId())
resp, err := client.ApiInternalHighlevelConnectionStatus(ctx, payload)
Expect(err).ToNot(HaveOccurred())
res, err := ParseApiInternalHighlevelConnectionStatusResponse(resp)
Expand Down

0 comments on commit cad9b6a

Please sign in to comment.