Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
blancfabian committed Nov 2, 2023
1 parent cc4e313 commit 673ff89
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions GreenArrow.Engine.Test/DKIMKeysApi/DKIMKeysApiTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ public async Task Post_should_throw_RestApiException_upon_an_exception_in_the_im
public async Task Post_should_return_deserialized_response_content_on_sucessfull()
{
// Arrange
var DKIMKeysResponse = specimens.Create<HttpSubmissionResponse>();
var httpContent = new StringContent(DKIMKeysResponse.ToJson());
var DKIMKeysResponse = specimens.Create<DKIMKeysResponse>();
var httpContent = new StringContent(DKIMKeysResponse.ToJson(true));

var httpResponseMessage = new HttpResponseMessage
{
Expand Down
2 changes: 1 addition & 1 deletion GreenArrow.Engine/DKIMKeysApi/IDKIMKeysApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public interface IDKIMKeysApi
/// Create a DKIM Key
/// </summary>
/// <param name="request"></param>
/// <param name="cancellationToken">The cancellation toekn</param>
/// <param name="cancellationToken">The cancellation token</param>
/// <returns>A generic rest api response with the deserialized DKIM Keys API response when success</returns>
Task<IRestApiResponse<DKIMKeysResponse>> PostAsync(DKIMKeysRequest request, CancellationToken cancellationToken = default);
}
Expand Down
4 changes: 2 additions & 2 deletions GreenArrow.Engine/HttpSubmissionApi/IHttpSubmissionApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ public interface IHttpSubmissionApi
/// Submit messages for delivery
/// </summary>
/// <param name="request"></param>
/// <param name="cancellationToken">The cancellation toekn</param>
/// <param name="cancellationToken">The cancellation token</param>
/// <returns>A generic rest api response with the deserialized Http Submission API response when success</returns>
Task<IRestApiResponse<HttpSubmissionResponse>> PostAsync(HttpSubmissionRequest request, CancellationToken cancellationToken = default);

/// <summary>
/// Submit messages for delivery
/// </summary>
/// <param name="request"></param>
/// <param name="cancellationToken">The cancellation toekn</param>
/// <param name="cancellationToken">The cancellation token</param>
/// <returns>A generic rest api response with the deserialized Http Submission API response when success</returns>
Task<IRestApiResponse<HttpSubmissionResponse>> PutAsync(HttpSubmissionRequest request, CancellationToken cancellationToken = default);
}
Expand Down

0 comments on commit 673ff89

Please sign in to comment.