We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1138b35 commit 50f1fa8Copy full SHA for 50f1fa8
test/Billing.Test/Services/SubscriptionUpdatedHandlerTests.cs
@@ -544,9 +544,6 @@ public async Task HandleAsync_IncompleteExpiredUserSubscription_OnlyUpdatesExpir
544
await _userService.DidNotReceive().DisablePremiumAsync(Arg.Any<Guid>(), Arg.Any<DateTime?>());
545
await _userService.Received(1).UpdatePremiumExpirationAsync(userId, currentPeriodEnd);
546
await _stripeFacade.DidNotReceive().UpdateSubscription(Arg.Any<string>(), Arg.Any<SubscriptionUpdateOptions>());
547
- // Assert
548
- await _userService.Received(1)
549
- .DisablePremiumAsync(userId, currentPeriodEnd);
550
await _stripeFacade.DidNotReceive()
551
.CancelSubscription(Arg.Any<string>(), Arg.Any<SubscriptionCancelOptions>());
552
0 commit comments