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 a048810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/resources/Identity/VerificationSession.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ 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',
method: 'POST',
url: '/v1/identity/verification_sessions',
data: {},
headers: {},
settings: {},
Expand Down

0 comments on commit a048810

Please sign in to comment.