Skip to content

Commit

Permalink
null type order changed
Browse files Browse the repository at this point in the history
  • Loading branch information
narayana-plivo committed Oct 1, 2018
1 parent 70142e3 commit 627477f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Plivo/Resource/Message/MessageInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public MessageInterface(HttpClient client) : base(client)
/// <param name="trackable">trackable.</param>
/// <param name="powerpackUUID">powerpackUUID</param>
public MessageCreateResponse Create(
List<string> dst, string text, string type = null,string src = null,
List<string> dst, string text, string src = null, string type = null,
string url = null, string method = null, bool? log = null, bool? trackable = null, string powerpack_uuid = null)
{

Expand Down
4 changes: 2 additions & 2 deletions tests/Plivo.Test/Resources/TestMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ public void TestMessageCreate()
Assert.IsEmpty(
ComparisonUtilities.Compare(
response,
Api.Message.Create("+919999999999", new List<string>() {"+919898989898", "+919090909090"},
"textext")));
Api.Message.Create( new List<string>() {"+919898989898", "+919090909090"},
"textext", "+919999999999")));
AssertRequest(request);
}

Expand Down

0 comments on commit 627477f

Please sign in to comment.