Skip to content

Commit

Permalink
Update TestBatch.cs
Browse files Browse the repository at this point in the history
fix rfr batch time out
  • Loading branch information
litao-vantiv committed Apr 8, 2015
1 parent 2c46c08 commit a8e5a3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LitleSdkForNet/LitleSdkForNetTest/Functional/TestBatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ public void RFRBatch()
litle.addBatch(litleBatchRequest);

string batchName = litle.sendToLitle();
litle.blockAndWaitForResponse(batchName,120000);
litle.blockAndWaitForResponse(batchName,estimatedResponseTime(0, 1 * 2));
litleResponse litleResponse = litle.receiveFromLitle(batchName);

Assert.NotNull(litleResponse);
Expand Down Expand Up @@ -535,7 +535,7 @@ public void RFRBatch()
string rfrBatchName = litleRfr.sendToLitle();
try
{
litle.blockAndWaitForResponse(rfrBatchName, estimatedResponseTime(0, 1 * 2));
litle.blockAndWaitForResponse(rfrBatchName, 120000);
litleResponse litleRfrResponse = litle.receiveFromLitle(rfrBatchName);

Assert.NotNull(litleRfrResponse);
Expand Down

0 comments on commit a8e5a3d

Please sign in to comment.