Skip to content

Commit

Permalink
Adding sdk version string change for v11.4.10 (#76)
Browse files Browse the repository at this point in the history
* Removing Tamir.SharpSSH & Adding support for Renci.SshNet

* Modifying functional test as per the new library

* Updating Changelog & SDK version

* Adding sdk version change
  • Loading branch information
mishravinod202 authored May 2, 2023
1 parent b532990 commit e4c856f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ public string generateXmlHeader()
xmlHeader += "sameDayFunding=\"" + sameDayFunding.ToString().ToLower() + "\"\r\n";
}

xmlHeader += "merchantSdk=\"DotNet;11.4.9\"\r\n";
xmlHeader += "merchantSdk=\"DotNet;11.4.10\"\r\n";

xmlHeader += "merchantId=\"" + config["merchantId"] + "\">\r\n";
return xmlHeader;
Expand Down
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleOnline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ private litleOnlineRequest CreateLitleOnlineRequest()
{
var request = new litleOnlineRequest();
request.merchantId = _config["merchantId"];
request.merchantSdk = "DotNet;11.4.9";
request.merchantSdk = "DotNet;11.4.10";
var authentication = new authentication();
authentication.password = _config["password"];
authentication.user = _config["username"];
Expand Down
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNetTest/Unit/TestBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void testBatchRequestContainsMerchantSdkAttribute()
var actual = batchRequest.generateXmlHeader();
var expected = @"
<batchRequest id=""""
merchantSdk=""DotNet;11.4.9""
merchantSdk=""DotNet;11.4.10""
merchantId=""01234"">
";

Expand Down

0 comments on commit e4c856f

Please sign in to comment.