Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed May 19, 2021
1 parent 6a01dae commit 5305279
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/resources/Identity/VerificationSession.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ describe('Identity', () => {
it('Sends the correct request', () => {
stripe.identity.verificationSessions.create({type: 'id_number'});
expect(stripe.LAST_REQUEST).to.deep.equal({
method: 'GET',
url: '/v1/identity/verification_sessions/vs_123',
data: {},
method: 'POST',
url: '/v1/identity/verification_sessions',
data: {type: 'id_number'},
headers: {},
settings: {},
});
Expand Down

0 comments on commit 5305279

Please sign in to comment.