Skip to content

Commit 38bba7d

Browse files
fix expected response codes in batch test
1 parent b0cfb60 commit 38bba7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LitleSdkForNet/LitleSdkForNetTest/Functional/TestBatch.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ public void SimpleBatch()
453453
var giftCardAuthReversalResponse = litleBatchResponse.nextGiftCardAuthReversalResponse();
454454
while (giftCardAuthReversalResponse != null)
455455
{
456-
Assert.AreEqual("100", giftCardAuthReversalResponse.response);
456+
Assert.AreEqual("301", giftCardAuthReversalResponse.response);
457457

458458
giftCardAuthReversalResponse = litleBatchResponse.nextGiftCardAuthReversalResponse();
459459
}
@@ -469,7 +469,7 @@ public void SimpleBatch()
469469
var giftCardCaptureResponse = litleBatchResponse.nextGiftCardCaptureResponse();
470470
while (giftCardCaptureResponse != null)
471471
{
472-
Assert.AreEqual("100", giftCardCaptureResponse.response);
472+
Assert.AreEqual("301", giftCardCaptureResponse.response);
473473

474474
giftCardCaptureResponse = litleBatchResponse.nextGiftCardCaptureResponse();
475475
}
@@ -494,7 +494,7 @@ public void SimpleBatch()
494494
var giftCardCreditResponse = litleBatchResponse.nextGiftCardCreditResponse();
495495
while (giftCardCreditResponse != null)
496496
{
497-
Assert.AreEqual("100", giftCardCreditResponse.response);
497+
Assert.AreEqual("301", giftCardCreditResponse.response);
498498

499499
giftCardCreditResponse = litleBatchResponse.nextGiftCardCreditResponse();
500500
}

0 commit comments

Comments
 (0)