Skip to content

Commit

Permalink
Use different record IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
danrowden committed Aug 21, 2024
1 parent 18a8bb0 commit 9d27c0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('Loops.createOrUpdateContact', () => {
}
nock('https://app.loops.so/api/v1').put('/contacts/update', testPayloadOut).reply(200, {
success: true,
id: 'some-id-1'
id: 'someId'
})

const responses = await testDestination.testAction('createOrUpdateContact', {
Expand All @@ -61,7 +61,7 @@ describe('Loops.createOrUpdateContact', () => {
expect(responses[0].status).toBe(200)
expect(responses[0].data).toStrictEqual({
success: true,
id: 'some-id-1'
id: 'someId'
})
})

Expand Down

0 comments on commit 9d27c0c

Please sign in to comment.