diff --git a/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs b/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs index f54ecf5a6e..e32cb40815 100644 --- a/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs +++ b/bitwarden_license/src/Commercial.Core/Billing/ProviderBillingService.cs @@ -242,7 +242,7 @@ public class ProviderBillingService( var subscription = await subscriberService.GetSubscription(provider, new SubscriptionGetOptions { - Expand = ["customer"] + Expand = ["customer", "test_clock"] }); if (subscription == null) diff --git a/bitwarden_license/test/Commercial.Core.Test/Billing/ProviderBillingServiceTests.cs b/bitwarden_license/test/Commercial.Core.Test/Billing/ProviderBillingServiceTests.cs index f9c59d6b5b..c432be51ae 100644 --- a/bitwarden_license/test/Commercial.Core.Test/Billing/ProviderBillingServiceTests.cs +++ b/bitwarden_license/test/Commercial.Core.Test/Billing/ProviderBillingServiceTests.cs @@ -719,7 +719,7 @@ public class ProviderBillingServiceTests await sutProvider.GetDependency().Received(1).GetSubscription( provider, Arg.Is( - options => options.Expand.Count == 1 && options.Expand.First() == "customer")); + options => options.Expand.Count == 2 && options.Expand.First() == "customer" && options.Expand.Last() == "test_clock")); } [Theory, BitAutoData] @@ -732,7 +732,7 @@ public class ProviderBillingServiceTests var subscription = new Subscription(); subscriberService.GetSubscription(provider, Arg.Is( - options => options.Expand.Count == 1 && options.Expand.First() == "customer")).Returns(subscription); + options => options.Expand.Count == 2 && options.Expand.First() == "customer" && options.Expand.Last() == "test_clock")).Returns(subscription); var providerPlanRepository = sutProvider.GetDependency();