Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
narayana-plivo committed Oct 10, 2024
1 parent 4251e67 commit 93dd35a
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 93dd35a

Please sign in to comment.