Skip to content

Commit

Permalink
Merge pull request #289 from plivo/ut-fix-verify
Browse files Browse the repository at this point in the history
fix ut
  • Loading branch information
narayana-plivo authored Oct 10, 2024
2 parents 4251e67 + 93dd35a commit 81636d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/plivo/api/VerifySessionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ public void setUp() throws Exception {
public void invalidSessionCreated() throws Exception {
expectResponse("createSession.json", 202);

VerifySession.creator(null,null, null, null, null,null, null, null, 0)
VerifySession.creator(null,null, null, null, null,null, null, null, 0, null)
.create();
}

@Test
public void sessionCreated() throws Exception {
expectResponse("createSession.json", 202);

VerifySession.creator(null,"+1234567890", null, null, null, null, null, null, 0)
VerifySession.creator(null,"+1234567890", null, null, null, null, null, null, 0, null)
.create();
}

Expand Down

0 comments on commit 81636d9

Please sign in to comment.