Skip to content

Commit

Permalink
fix ut (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
narayana-plivo authored Sep 6, 2024
1 parent 827fecd commit d5873d0
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)
VerifySession.creator(null,null, null, null, null,null, null, null, 0)
.create();
}

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

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

Expand Down

0 comments on commit d5873d0

Please sign in to comment.