mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[PM-16611] Failing unit tests due to previous month being incorrectly… (#5207)
This commit is contained in:
parent
bc40884db0
commit
bad533af8e
@ -260,13 +260,15 @@ public class ProviderBillingControllerTests
|
|||||||
|
|
||||||
var stripeAdapter = sutProvider.GetDependency<IStripeAdapter>();
|
var stripeAdapter = sutProvider.GetDependency<IStripeAdapter>();
|
||||||
|
|
||||||
var (thisYear, thisMonth, _) = DateTime.UtcNow;
|
var now = DateTime.UtcNow;
|
||||||
var daysInThisMonth = DateTime.DaysInMonth(thisYear, thisMonth);
|
var oneMonthAgo = now.AddMonths(-1);
|
||||||
|
|
||||||
|
var daysInThisMonth = DateTime.DaysInMonth(now.Year, now.Month);
|
||||||
|
|
||||||
var subscription = new Subscription
|
var subscription = new Subscription
|
||||||
{
|
{
|
||||||
CollectionMethod = StripeConstants.CollectionMethod.ChargeAutomatically,
|
CollectionMethod = StripeConstants.CollectionMethod.ChargeAutomatically,
|
||||||
CurrentPeriodEnd = new DateTime(thisYear, thisMonth, daysInThisMonth),
|
CurrentPeriodEnd = new DateTime(now.Year, now.Month, daysInThisMonth),
|
||||||
Customer = new Customer
|
Customer = new Customer
|
||||||
{
|
{
|
||||||
Address = new Address
|
Address = new Address
|
||||||
@ -290,15 +292,14 @@ public class ProviderBillingControllerTests
|
|||||||
options.Expand.Contains("customer.tax_ids") &&
|
options.Expand.Contains("customer.tax_ids") &&
|
||||||
options.Expand.Contains("test_clock"))).Returns(subscription);
|
options.Expand.Contains("test_clock"))).Returns(subscription);
|
||||||
|
|
||||||
var lastMonth = thisMonth - 1;
|
var daysInLastMonth = DateTime.DaysInMonth(oneMonthAgo.Year, oneMonthAgo.Month);
|
||||||
var daysInLastMonth = DateTime.DaysInMonth(thisYear, lastMonth);
|
|
||||||
|
|
||||||
var overdueInvoice = new Invoice
|
var overdueInvoice = new Invoice
|
||||||
{
|
{
|
||||||
Id = "invoice_id",
|
Id = "invoice_id",
|
||||||
Status = "open",
|
Status = "open",
|
||||||
Created = new DateTime(thisYear, lastMonth, 1),
|
Created = new DateTime(oneMonthAgo.Year, oneMonthAgo.Month, 1),
|
||||||
PeriodEnd = new DateTime(thisYear, lastMonth, daysInLastMonth),
|
PeriodEnd = new DateTime(oneMonthAgo.Year, oneMonthAgo.Month, daysInLastMonth),
|
||||||
Attempted = true
|
Attempted = true
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user