Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRouyer committed Oct 15, 2020
1 parent 8d4497a commit a19555f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Pipedrive.net.Tests/Clients/LeadsClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ public async Task RequestsCorrectUrl()
var connection = Substitute.For<IApiConnection>();
var client = new LeadsClient(connection);

await client.Get(123);
await client.Get(new Guid("42b9e030-0e5c-11eb-8c38-a7dff179fdd2"));

Received.InOrder(async () =>
{
await connection.Get<Lead>(Arg.Is<Uri>(u => u.ToString() == "leads/123"));
await connection.Get<Lead>(Arg.Is<Uri>(u => u.ToString() == "leads/42b9e030-0e5c-11eb-8c38-a7dff179fdd2"));
});
}
}
Expand Down
1 change: 0 additions & 1 deletion src/Pipedrive.net/Models/Request/ActivityUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public class ActivityUpdate
[JsonProperty("subject")]
public string Subject { get; set; }


[JsonProperty("done")]
public ActivityDone Done { get; set; }

Expand Down

0 comments on commit a19555f

Please sign in to comment.