@@ -77,7 +77,6 @@ import (
77
77
subscriptionitem "github.com/stripe/stripe-go/v81/subscriptionitem"
78
78
subscriptionschedule "github.com/stripe/stripe-go/v81/subscriptionschedule"
79
79
tax_calculation "github.com/stripe/stripe-go/v81/tax/calculation"
80
- tax_form "github.com/stripe/stripe-go/v81/tax/form"
81
80
tax_settings "github.com/stripe/stripe-go/v81/tax/settings"
82
81
tax_transaction "github.com/stripe/stripe-go/v81/tax/transaction"
83
82
taxcode "github.com/stripe/stripe-go/v81/taxcode"
@@ -4444,27 +4443,6 @@ func TestQuotesPost2Service(t *testing.T) {
4444
4443
assert .Nil (t , err )
4445
4444
}
4446
4445
4447
- func TestQuotesPreviewInvoicesLinesGet (t * testing.T ) {
4448
- params := & stripe.QuoteListPreviewInvoiceLinesParams {
4449
- Quote : stripe .String ("qt_xyz" ),
4450
- PreviewInvoice : stripe .String ("in_xyz" ),
4451
- }
4452
- result := quote .ListPreviewInvoiceLines (params )
4453
- assert .NotNil (t , result )
4454
- assert .Nil (t , result .Err ())
4455
- }
4456
-
4457
- func TestQuotesPreviewInvoicesLinesGetService (t * testing.T ) {
4458
- params := & stripe.QuoteListPreviewInvoiceLinesParams {
4459
- Quote : stripe .String ("qt_xyz" ),
4460
- PreviewInvoice : stripe .String ("in_xyz" ),
4461
- }
4462
- sc := client .New (TestAPIKey , nil )
4463
- result := sc .Quotes .ListPreviewInvoiceLines (params )
4464
- assert .NotNil (t , result )
4465
- assert .Nil (t , result .Err ())
4466
- }
4467
-
4468
4446
func TestRadarEarlyFraudWarningsGet (t * testing.T ) {
4469
4447
params := & stripe.RadarEarlyFraudWarningListParams {}
4470
4448
params .Limit = stripe .Int64 (3 )
@@ -5730,21 +5708,6 @@ func TestTaxCodesGet2Service(t *testing.T) {
5730
5708
assert .Nil (t , err )
5731
5709
}
5732
5710
5733
- func TestTaxFormsPdfGet (t * testing.T ) {
5734
- params := & stripe.TaxFormPDFParams {}
5735
- result , err := tax_form .PDF ("form_xxxxxxxxxxxxx" , params )
5736
- assert .NotNil (t , result )
5737
- assert .Nil (t , err )
5738
- }
5739
-
5740
- func TestTaxFormsPdfGetService (t * testing.T ) {
5741
- params := & stripe.TaxFormPDFParams {}
5742
- sc := client .New (TestAPIKey , nil )
5743
- result , err := sc .TaxForms .PDF ("form_xxxxxxxxxxxxx" , params )
5744
- assert .NotNil (t , result )
5745
- assert .Nil (t , err )
5746
- }
5747
-
5748
5711
func TestTaxIdsDelete (t * testing.T ) {
5749
5712
params := & stripe.TaxIDParams {}
5750
5713
result , err := taxid .Del ("taxid_123" , params )
0 commit comments