Skip to content

Commit

Permalink
fix codeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
tfjanjua committed Dec 23, 2024
1 parent dd1ab34 commit e0c0f5f
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -495,12 +495,6 @@ public async Task RemoveOfferSubscription_ReturnsExpected(OfferTypeId offerTypeI
.Returns(offerSubscriptionDetails);
A.CallTo(() => _offerSubscriptionsRepository.DeleteOfferSubscription(A<Guid>._, A<Guid>._, A<Guid>._, A<OfferSubscriptionStatusId>._, A<Guid>._))
.Returns(subscription);
var mailParameters = new[]
{
("offerName", offerSubscriptionDetails.OfferName!),
("url", BasePortalUrl),
("requesterName", string.Format("{0} {1}", offerSubscriptionDetails.RequesterFirstname, offerSubscriptionDetails.RequesterLastname))
};

// Act
await _sut.RemoveOfferSubscriptionAsync(_validSubscriptionId, offerTypeId, BasePortalUrl);
Expand Down

0 comments on commit e0c0f5f

Please sign in to comment.