From b96482ce16d897104fb50c76f22a4516f723ff55 Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Wed, 2 Apr 2025 12:18:15 +0200 Subject: [PATCH] Fix stub --- test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs b/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs index 01a316df7d..1e07698476 100644 --- a/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs +++ b/test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs @@ -26,4 +26,10 @@ public class FakeAutomaticTaxStrategy( { options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = IsAutomaticTaxEnabled }; } + + public void SetInvoiceCreatePreviewOptions(InvoiceCreatePreviewOptions options) + { + options.AutomaticTax = new InvoiceAutomaticTaxOptions { Enabled = IsAutomaticTaxEnabled }; + + } }