From aed58506e7dbe0a61721c9e7b89c1055b2353d99 Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Wed, 2 Apr 2025 12:18:15 +0200 Subject: [PATCH] Fix stub --- .../Billing/Stubs/FakeAutomaticTaxStrategy.cs | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs b/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs index 01a316df7d..253aead5c7 100644 --- a/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs +++ b/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs @@ -3,27 +3,33 @@ using Stripe; namespace Bit.Core.Test.Billing.Stubs; -/// +/// /// Whether the subscription options will have automatic tax enabled or not. /// public class FakeAutomaticTaxStrategy( - bool IsAutomaticTaxEnabled) : IAutomaticTaxStrategy + bool isAutomaticTaxEnabled) : IAutomaticTaxStrategy { public SubscriptionUpdateOptions? GetUpdateOptions(Subscription subscription) { return new SubscriptionUpdateOptions { - AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = IsAutomaticTaxEnabled } + AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled } }; } public void SetCreateOptions(SubscriptionCreateOptions options, Customer customer) { - options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = IsAutomaticTaxEnabled }; + options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled }; } public void SetUpdateOptions(SubscriptionUpdateOptions options, Subscription subscription) { - options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = IsAutomaticTaxEnabled }; + options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled }; + } + + public void SetInvoiceCreatePreviewOptions(InvoiceCreatePreviewOptions options) + { + options.AutomaticTax = new InvoiceAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled }; + } }